REVIEW 5 major objections 5 minor 41 references
An Analysis of the Correctness and Computational Complexity of Path Planning in Payment Channel Networks
T0 review · 5 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read A proof shows that the Lightning Network's Dijkstra-style routing algorithm is correct and near-linear exactly when channel fees are consistent, and that arbitrary fee maps make the problem NP-hard.
desk verdict The paper's core mapping is solid, but the printed Algorithm 1 computes fees on the wrong amount, so the correctness proof doesn't cover the stated algorithm; fix that and it's a worthwhile contribution. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the consistency (or monotonicity) property of the fee map: $a+f(e,a)\le a'+f(e,a')$ whenever $a\le a'$. This condition plays the role of a FIFO / non-decreasing-horizon requirement in time-dependent networks; it guarantees that a greedy, label-setting search never needs to revisit a vertex with a larger accumulated fee. The paper reduces Lightning path planning to a minimum-time problem on a time-dependent network, transfers the classical correctness result for that setting, and then shows that Algorithm 1 prunes the search space of Algorithm 1' to feasible paths, yielding the same near-linear bound. The closed-form solution of the amount recurrence $a_{i-1}=a_i+f_{br}(e_i,a_i)$ supplies the formula for the amount that must be sent at each hop.
What would settle it
A concrete check: on the paper's own Figure 3 example, compare the fee returned by the pseudocode (which evaluates the arc fee at the constant amount $a$ on line 9) with the fee computed by Equation (4) on the accumulated amount. If the two disagree, the correctness theorem applies to the intended algorithm, not to the literal pseudocode.
Extended reading notes
Core claim
The central claim is that the Lightning Network's path planning algorithm, a variant of Dijkstra's algorithm that reverses the search direction and accumulates fees, is correct and has complexity $O(|E|+|V|\log|V|)$ precisely when the channel fee map $f_{br}$ is consistent in the sense of Definition 1: for every arc $e$ and amounts $a \le a'$, $a + f_{br}(e,a) \le a' + f_{br}(e,a')$. The proof works by equating the payment routing problem with a lowest-time path problem in a time-dependent network whose travel times are the fee amounts, then applying the known correctness and complexity results for Dijkstra-style search in such networks. Under this condition the algorithm returns the true lowest-fee feasible path; if the fee map is arbitrary and inconsistent, the paper proves that the path planning problem is NP-hard. It also proves that the Lightning Network's fee formula $f_{br}(e,a)=f_b(e)+f_r(e)\,a$ with nonnegative rate is always consistent, and introduces a partial bidirectional search variant whose correctness is established by the same argument and whose practical speedup is demonstrated by simulation.
Load-bearing premise
The load-bearing assumption is that channel fees are consistent: sending a larger amount through a channel never leaves a smaller amount arriving out the other side. The proof of correctness and efficiency collapses if this condition fails.
Editorial extensions
If this is right
- New payment channel networks that want efficient routing should design their fee schedules to satisfy $a+f(e,a)\le a'+f(e,a')$ for all $a\le a'$.
- Lightning's existing linear fee formula already meets this condition, giving a theoretical explanation for why its routing search is usually fast.
- If a network operator uses a non-consistent fee map, no efficient exact algorithm can be guaranteed; the paper's NP-hardness result applies to the general case.
- The partial bidirectional search variant can be dropped into existing implementations without changing asymptotic complexity and offers a measurable reduction in explored vertices on hub-and-spoke topologies.
- The correctness guarantee carries over to any payment channel network whose fee map is consistent, not just to Lightning.
Reading between the lines
- Extending the paper's logic
- consistency should become a first-class design requirement for any new PCN fee schedule
- so that non-linear or state-dependent fee functions are checked against the condition before deployment. The closed-form recurrence in the appendix could be used to compute the required onward amount exactly without iterating each hop
- reducing per-hop arithmetic in future routing engines. Because correctness depends on the amount used at each hop
- implementations should verify that their fee computation matches Equation (4) on the accumulated amount
- a discrepancy between the published pseudocode and the intended formula is testable on real node software.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper analyzes a Dijkstra-style algorithm (Algorithm 1) for path planning in payment channel networks (PCNs), specifically the Lightning Network (LN). It claims that if the fee map is 'consistent' (a FIFO-type condition), the algorithm correctly finds a lowest-fee path satisfying balance constraints and runs in O(|E| + |V| log |V|). For arbitrary inconsistent fee maps, it claims the problem is NP-hard. A second contribution is a 'partial bidirectional' variant (Algorithm 2) with the same asymptotic complexity, plus an empirical evaluation on an LN snapshot. The paper also solves a recurrence for accumulated fees along a path and proves that the LN's linear fee function is consistent.
Significance. If the results were fully correct, this would be a valuable formal analysis of a heuristic widely used in LN implementations (LND, Core Lightning), giving the first correctness and complexity guarantees under a realistic consistency condition, plus a hardness result for the general case. The bidirectional variant is a small but potentially useful practical improvement, and the consistency observation about the LN's fee structure is nontrivial context for protocol design. The paper also provides a closed-form solution to the fee-accumulation recurrence and ships Python code to verify it, which is a strength. However, the central correctness claims do not hold for the algorithms as printed, and several proof steps are asserted rather than demonstrated; these issues must be resolved before the contribution can be accepted.
major comments (5)
- [Algorithm 1, line 9; Definition 2; Equation (4)] The relaxation step computes cv' = c(v) + fbr((v,v'), a), but the fee on the transposed arc must be evaluated at the accumulated amount a + c(v), and on the reverse original arc (v',v), not on (v,v'). Equation (4) and the example in Section 4 require this: after reaching i with c(i)=3 in Figure 3, the next fee is fbr((s,i), 13)=4.6, so c(s)=7.6, whereas line 9 yields fbr((s,i),10)=4 and c(s)=7. The same error propagates through Algorithm 1' (Definition 2) and Algorithm 2 (line 11). Because Lemma 5's appeal to Kaufman et al.'s time-dependent Dijkstra requires evaluating the travel-time function at the departure time, the correctness proofs do not apply to the printed algorithms. This is a load-bearing error for Theorem 7 and Theorem 10.
- [Algorithm 1, line 10; Algorithm 2, line 8] The balance condition c(v)+a <= b(v,v') checks the balance of the wrong arc and uses the amount before the fee is added. The amount that must fit in the channel is a + c(v') (the amount at the head of the GT arc), which equals a + c(v) + fbr((v',v), a+c(v)) under the correct relaxation, and the relevant balance is that of the original arc (v',v). As printed, the algorithm can declare a path feasible even when the true required amount exceeds the channel balance, so the feasibility part of Theorem 7's correctness claim is unsupported.
- [Theorem 7, proof] The pruning argument is asserted, not proven. The proof states that Algorithm 1 prunes precisely the infeasible paths and that the optimal feasible path therefore remains in the pruned search space, but no invariant is established showing that the tentative costs c(v) correctly track the accumulated amount a+c(v) for partially explored paths, nor that the balance checks preserve an optimal feasible path under the order of vertex processing. The boundedness assumption on fbr is not used to bridge this gap. A rigorous proof must relate the pruned search to the (corrected) Algorithm 1' and show the optimal feasible path is not eliminated.
- [Theorem 9, proof] The NP-hardness proof is a two-sentence appeal to Lemma 4 and Zeitz [33], and it is not sufficient. Lemma 4's equivalence is not formalized for balance constraints, and the 'forbidden waiting' problem's structure is not shown to be encodable by LN fee maps of the form fb(e)+fr(e)*a with the balance constraints. The proof needs at least a precise reduction or a rigorous statement of how arbitrary non-consistent fee maps simulate the hardness source. As written, Theorem 9 is not established.
- [Theorem 10, proof and Algorithm 2, lines 6-9] Algorithm 2's early termination condition is not justified. The proof cites a nonexistent 'Theorem 5' (intended Lemma 5) and does not prove that the first popped neighbor v of s in GT yields a lowest-fee path to s. The text preceding the algorithm relies on a transformation that sets the fees of arcs leaving s to zero, but Algorithm 2 does not apply that transformation, and the proof does not use the consistency property to rule out better paths through vertices with larger c(v). Additionally, the balance check at line 8 uses the pre-fee amount and the wrong balance quantity, as in Algorithm 1. Hence the correctness of the bidirectional variant is not demonstrated.
minor comments (5)
- [Section 6, Theorem 10 proof] The proof refers to 'Theorem 5' but no Theorem 5 exists; the intended reference appears to be Lemma 5. This should be corrected.
- [Section 3, Equation (2) discussion] The sentence 'to transfer an amount a from vi to vj, we must first transfer a plus the fee in question to vi' is correct for the model, but the definition of ei in the recurrence (2) could be stated more explicitly (which of the two arcs is meant) to avoid confusion with the transposed graph used later.
- [Section 7, experimental setup] The experimental results are reported without implementation code or details of the priority-queue and graph representations. Since the printed algorithms contain the fee/balance bugs, it is unclear what implementation was actually benchmarked; the reported vertex counts and wall-clock reductions are therefore hard to reproduce or interpret.
- [Appendix A, Listing 1] The comment in the code says 'directly using Equation (6)' but the cited equation is (7) in the theorem. Also, the index notation in the proof of Theorem 11 could be simplified; the product limits in equations (10)-(13) are error-prone as written.
- [General] Papers should be checked for typos such as 'Inter i9-14900K' (Intel) and the use of 'Theorem 5' instead of 'Lemma 5'. These are minor but contribute to an impression of insufficient proofreading.
Circularity Check
No significant circularity: the paper's results are derived from external benchmarks and direct algebra, not from fitted inputs or self-citations.
full rationale
The derivation chain is self-contained with respect to circularity concerns. The correctness theorem for the unidirectional variant (Lemma 5, Theorem 7) is imported from Kaufman et al. 'Fastest paths in time-dependent networks' [29], an external refereed result about FIFO time-dependent Dijkstra; the paper's own contribution is the reduction (Lemma 4) from LN path planning to TDN path planning and the direct verification that the LN fee map fbr(e,a)=fb(e)+fr(e)a satisfies the consistency condition (Theorem 2) because fr(e) >= 0. The NP-hardness claim (Theorem 9) likewise rests on Zeitz's external NP-hardness proof for non-FIFO time-dependent networks, not on a self-citation. No fitted parameter is renamed as a prediction: LN consistency is derived from fee-rate non-negativity, not estimated from data, and the empirical section compares two concrete algorithms on a real LN snapshot and simulated payments, which is externally falsifiable. The substantive concern visible in the manuscript is a correctness/proof gap, not a circularity: Algorithm 1 line 9 relaxes using fbr((v,v'),a) with the original amount a rather than a+c(v) as required by Equation (4), so the printed algorithm may not be the one covered by the Kaufman-based lemmas; in addition, Theorem 7's claim that Algorithm 1's search space is exactly the feasible payment paths is asserted rather than proved. But a missing proof or an incorrect application of an external theorem is not a circular step unless the target claim is presupposed in the definitions, which it is not.
Assumptions & free parameters
assumptions (6)
- domain assumption LN fee rates and base fees are non-negative, making fbr consistent (Definition 1 and Theorem 2).
- domain assumption Path planning in a PCN with fee map f∞br is equivalent to a shortest path problem in a time-dependent network with travel time map fd = f∞br (Lemma 4).
- standard math Kaufman et al. [29], Theorem 4: Dijkstra's algorithm is correct and has the same complexity for TDNs with consistent (FIFO) travel time maps.
- standard math Zeitz [33]: the 'forbidden waiting' shortest path problem in non-FIFO TDNs is NP-hard.
- domain assumption Payment amounts and the range of fbr are bounded (used in Theorems 7 and 8).
- ad hoc to paper In Algorithm 1, the fee for transposed arc (v,v') is computed by fbr((v,v'), a) (line 9), which implicitly assumes the fee on the reverse original arc at amount a equals this value; the paper's own Equation (4) instead requires the fee at amount a+c(v) on the opposite arc.
Cite this review
Pith. "Pith review of An Analysis of the Correctness and Computational Complexity of Path Planning in Payment Channel Networks." pith.science (2026). https://pith.science/paper/WGUKDO34
@misc{pith2026250111419,
author = {Pith},
title = {Pith review of: An Analysis of the Correctness and Computational Complexity of Path Planning in Payment Channel Networks},
year = {2026},
howpublished = {\url{https://pith.science/paper/WGUKDO34}},
note = {Machine review of arXiv:2501.11419}
}
read the original abstract
Payment Channel Networks (PCNs) are a method for improving the scaling and latency of cryptocurrency transactions. For a payment to be made between two peers in a PCN, a feasible low-fee path in the network must be planned. Many PCN path planning algorithms use a search algorithm that is a variant of Dijkstra's algorithm. In this article, we prove the correctness and computational complexity of this algorithm. Specifically, we show that, if the PCN satisfies a consistency property relating to the fees charged by payment channels, the algorithm is correct and has polynomial computational complexity. However, in the general case, the algorithm is not correct and the path planning problem is NP-hard. These newly developed results can be used to inform the development of new or existing PCNs amenable to path planning. For example, we show that the Lightning Network, which is the most widely used PCN and is built on the Bitcoin cryptocurrency, currently satisfies the above consistency property. As a second contribution, we demonstrate that a small modification to the above path planning algorithm which, although having the same asymptotic computational complexity, empirically shows better performance. This modification involves the use of a bidirectional search and is empirically evaluated by simulating transactions on the Lightning Network.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[33]
Tim Zeitz. NP-hardness of shortest path problems in networks with non-fifo time-dependent travel times.Information Processing Letters, 179:106287, 2023
work page 2023
-
[1]
Bitcoin: A peer-to-peer electronic cash system.Decentralized business review, page 21260, 2008
Satoshi Nakamoto. Bitcoin: A peer-to-peer electronic cash system.Decentralized business review, page 21260, 2008
work page 2008
-
[2]
Yang Xiao, Ning Zhang, Wenjing Lou, and Y Thomas Hou. A survey of distributed consensus protocols for blockchain networks.IEEE Communications Surveys & Tutorials, 22(2):1432– 1465, 2020
work page 2020
-
[3]
Scaling blockchains: A comprehensive survey.IEEE Access, 8:125244–125262, 2020
Abdelatif Hafid, Abdelhakim Senhaji Hafid, and Mustapha Samih. Scaling blockchains: A comprehensive survey.IEEE Access, 8:125244–125262, 2020
work page 2020
-
[4]
Andreas M Antonopoulos, Olaoluwa Osuntokun, and René Pickhardt.Mastering the Lightning Network. O’Reilly Media, Inc., 2021
work page 2021
-
[5]
Eltoo: A simple layer2 protocol for bitcoin
Christian Decker, Rusty Russell, and Olaoluwa Osuntokun. Eltoo: A simple layer2 protocol for bitcoin. White paper: https://blockstream.com/eltoo.pdf, 2018
work page 2018
-
[6]
A survey onblockchainscalability:Fromhardwaretolayer-twoprotocols
Gabriel Antonio F Rebello, Gustavo F Camilo,Lucas Airam Cde Souza, Maria Potop-Butucaru, Marcelo Dias de Amorim, Miguel Elias M Campista, and Luís Henrique MK Costa. A survey onblockchainscalability:Fromhardwaretolayer-twoprotocols. IEEECommunicationsSurveys & Tutorials, 2024
work page 2024
-
[7]
Vibhaalakshmi Sivaraman, Shaileshh Bojja Venkatakrishnan, Kathleen Ruan, Parimarjan Negi, Lei Yang, Radhika Mittal, Giulia Fanti, and Mohammad Alizadeh. High throughput cryptocur- 22 An Analysis of the Correctness and Computational Complexity rency routing in payment channel networks. InUSENIX Symposium on Networked Systems Design and Implementation, 2020
work page 2020
Show all 41 references
-
[8]
Boomerang: Redundancy improves latency and throughput in payment-channel networks
Vivek Bagaria, Joachim Neu, and David Tse. Boomerang: Redundancy improves latency and throughput in payment-channel networks. InFinancial Cryptography and Data Security, Kota Kinabalu, Malaysia, pages 304–324. Springer, 2020
2020
-
[9]
Optimally reliable & cheap payment flows on the lightning network
Rene Pickhardt and Stefan Richter. Optimally reliable & cheap payment flows on the lightning network. arXiv preprint arXiv:2107.05322, 2021
2021 arXiv
-
[10]
Settling payments fast and private: Efficient decentralized routing for path-based transactions.arXiv preprint arXiv:1709.05748, 2017
Stefanie Roos, Pedro Moreno-Sanchez, Aniket Kate, and Ian Goldberg. Settling payments fast and private: Efficient decentralized routing for path-based transactions.arXiv preprint arXiv:1709.05748, 2017
2017 arXiv
-
[11]
Flare: An approach to routing in lightning network.White Paper, 144, 2016
Pavel Prihodko, Slava Zhigulin, Mykola Sahno, Aleksei Ostrovskiy, and Olaoluwa Osuntokun. Flare: An approach to routing in lightning network.White Paper, 144, 2016
2016
-
[12]
Rapido: Scaling blockchain with multi-path payment channels.Neurocomputing, 406:322–332, 2020
Changting Lin, Ning Ma, Xun Wang, and Jianhai Chen. Rapido: Scaling blockchain with multi-path payment channels.Neurocomputing, 406:322–332, 2020
2020
-
[13]
InIEEE International Conference on Blockchain and Cryptocurrency, pages 1–5, 2020
RenePickhardtandMariuszNowostawski.Imbalancemeasureandproactivechannelrebalancing algorithm for the lightning network. InIEEE International Conference on Blockchain and Cryptocurrency, pages 1–5, 2020
2020
-
[14]
Privacy-utility tradeoffs in routing cryptocurrency over payment channel networks.Proceedings of the ACM on Measurement and Analysis of Computing Systems, 4(2):1–39, 2020
Weizhao Tang, Weina Wang, Giulia Fanti, and Sewoong Oh. Privacy-utility tradeoffs in routing cryptocurrency over payment channel networks.Proceedings of the ACM on Measurement and Analysis of Computing Systems, 4(2):1–39, 2020
2020
-
[15]
Twilight: A differentially private payment channel network
Maya Dotan, Saar Tochner, Aviv Zohar, and Yossi Gilad. Twilight: A differentially private payment channel network. InUSENIX Security Symposium, pages 555–570, 2022
2022
-
[16]
Routing payments onthelightningnetwork
Giovanni Di Stasi, Stefano Avallone, Roberto Canonico, and Giorgio Ventre. Routing payments onthelightningnetwork. In IEEEinternationalconferenceoninternetofthingsandIEEEgreen computingandcommunicationsandIEEEcyber,physicalandsocialcomputingandIEEEsmart data, pages 1161–1170, 2018
2018
-
[17]
How to profit from payments channels
Oğuzhan Ersoy, Stefanie Roos, and Zekeriya Erkin. How to profit from payments channels. In Financial Cryptography and Data Security, pages 284–303. Springer, 2020
2020
-
[18]
The merchant: Avoiding payment channel depletion through incentives
Yuup Van Engelshoven and Stefanie Roos. The merchant: Avoiding payment channel depletion through incentives. In IEEE International Conference on Decentralized Applications and Infrastructures, pages 59–68, 2021
2021
-
[19]
Hijacking routes in payment channel networks: A predictability tradeoff.arXiv preprint arXiv:1909.06890, 2019
Saar Tochner, Stefan Schmid, and Aviv Zohar. Hijacking routes in payment channel networks: A predictability tradeoff.arXiv preprint arXiv:1909.06890, 2019
1909 arXiv
-
[20]
The evolving topology of the lightning network: Central- ization, efficiency, robustness, synchronization, and anonymity.PlOS ONE, 15(1):e0225966, 2020
Stefano Martinazzi and Andrea Flori. The evolving topology of the lightning network: Central- ization, efficiency, robustness, synchronization, and anonymity.PlOS ONE, 15(1):e0225966, 2020
2020
-
[21]
Topological analysis of bitcoin’s lightning network
István András Seres, László Gulyás, Dániel A Nagy, and Péter Burcsi. Topological analysis of bitcoin’s lightning network. InInternational Conference on Mathematical Research for Blockchain Economy, Santorini, Greece, pages 1–12, 2020
2020
-
[22]
Dischargedpaymentchannels:Quantifying the lightning network’s resilience to topology-based attacks
EliasRohrer,JulianMalliaris,andFlorianTschorsch. Dischargedpaymentchannels:Quantifying the lightning network’s resilience to topology-based attacks. InIEEE European symposium on 23 Corcoran & Lewis security and privacy, pages 347–356, 2019
2019
-
[23]
A centrality analysis of the lightning network.Telecommunications Policy, 48(2):102696, 2024
Philipp Zabka, Klaus-T Förster, Christian Decker, and Stefan Schmid. A centrality analysis of the lightning network.Telecommunications Policy, 48(2):102696, 2024
2024
-
[24]
Braess paradox in layer-2 blockchain payment networks
Arad Kotzer and Ori Rottenstreich. Braess paradox in layer-2 blockchain payment networks. In IEEE International Conference on Blockchain and Cryptocurrency, Dubai, United Arab Emirates, 2023
2023
-
[25]
CRC Press, 2002
Charalambos A Charalambides.Enumerative combinatorics. CRC Press, 2002
2002
-
[26]
How lightning’s routing diminishes its anonymity
Satwik Prabhu Kumble, Dick Epema, and Stefanie Roos. How lightning’s routing diminishes its anonymity. InInternational Conference on Availability, Reliability and Security, pages 1–10, 2021
2021
-
[27]
Comparing lightning routing protocols to routing protocols with splitting
Dan Andreescu. Comparing lightning routing protocols to routing protocols with splitting. bachelor thesis, 2021
2021
-
[28]
Springer, 2019
Peter Sanders, Kurt Mehlhorn, Martin Dietzfelbinger, and Roman Dementiev.Sequential and Parallel Algorithms and Data Structures. Springer, 2019
2019
-
[29]
Fastest paths in time-dependent networks for intelligent vehicle-highway systems application.Journal of Intelligent Transportation Systems, 1(1):1–11, 1993
David E Kaufman and Robert L Smith. Fastest paths in time-dependent networks for intelligent vehicle-highway systems application.Journal of Intelligent Transportation Systems, 1(1):1–11, 1993
1993
-
[30]
Nonlinear equations.Numerical Optimization, pages 270–302, 2006
Jorge Nocedal and Stephen J Wright. Nonlinear equations.Numerical Optimization, pages 270–302, 2006
2006
-
[31]
Time-dependent routing prob- lems: A review.Computers & operations research, 64:189–197, 2015
Michel Gendreau, Gianpaolo Ghiani, and Emanuela Guerriero. Time-dependent routing prob- lems: A review.Computers & operations research, 64:189–197, 2015
2015
-
[32]
Shortest-path and minimum-delay algorithms in networks with time-dependent edge-length.Journal of the ACM, 37(3):607–625, 1990
Ariel Orda and Raphael Rom. Shortest-path and minimum-delay algorithms in networks with time-dependent edge-length.Journal of the ACM, 37(3):607–625, 1990
1990
-
[34]
ArtificialIntelligence:amodernapproach
StuartJ.RussellandPeterNorvig. ArtificialIntelligence:amodernapproach . Pearson,4edition, 2021
2021
-
[35]
Route planning in transportation networks
Hannah Bast, Daniel Delling, Andrew Goldberg, Matthias Müller-Hannemann, Thomas Pajor, Peter Sanders, Dorothea Wagner, and Renato F Werneck. Route planning in transportation networks. Algorithm engineering: Selected results and surveys, pages 19–80, 2016
2016
-
[36]
Research report: The lightning network grew by 1212% in 2 years, why it’s important to pay attention
River. Research report: The lightning network grew by 1212% in 2 years, why it’s important to pay attention. Technical report, River, 2023
2023
-
[37]
Survey on blockchain networking: Context, state-of-the-art, challenges.ACM Computing Surveys, 54(5):1–34, 2021
Maya Dotan, Yvonne-Anne Pignolet, Stefan Schmid, Saar Tochner, and Aviv Zohar. Survey on blockchain networking: Context, state-of-the-art, challenges.ACM Computing Surveys, 54(5):1–34, 2021
2021
-
[38]
Unjamming lightning: A systematic approach.Cryp- tology ePrint Archive, 2022
Clara Shikhelman and Sergei Tikhomirov. Unjamming lightning: A systematic approach.Cryp- tology ePrint Archive, 2022
2022
-
[39]
Strategic analysis of griefing attack in lightning network.IEEE Transactions on Network and Service Management, 2022
Subhra Mazumdar, Prabal Banerjee, Abhinandan Sinha, Sushmita Ruj, and Bimal Kumar Roy. Strategic analysis of griefing attack in lightning network.IEEE Transactions on Network and Service Management, 2022
2022
-
[40]
Anempiricalanalysisofprivacyinthelightningnetwork
George Kappos, Haaroon Yousaf, Ania Piotrowska, Sanket Kanjalkar, Sergi Delgado-Segura, 24 An Analysis of the Correctness and Computational Complexity AndrewMiller,andSarahMeiklejohn. Anempiricalanalysisofprivacyinthelightningnetwork. In Financial Cryptography and Data Securit...
2021
-
[41]
a [ " , n +1 ,
PaoloGuasoni,GurHuberman,andClaraShikhelman. Lightningnetworkeconomics:Topology. Available at SSRN 4439190, 2023. A Recurrence Relation In the following theorem, we solve the recurrence relation defined in Equation (2) to give a closed-form expression for eachai value. Theorem...
2023
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.