mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-01 17:47:30 +01:00
6 lines
156 B
Python
6 lines
156 B
Python
from lightning import Millisatoshi
|
|
|
|
|
|
def test_sum_radd():
|
|
result = sum([Millisatoshi(1), Millisatoshi(2), Millisatoshi(3)])
|
|
assert int(result) == 6
|