From c4068ab6ccfff5093b6616471f1076cfb4191488 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 17 Nov 2023 11:16:45 +0000 Subject: [PATCH] swaps: add small comment --- electrum/submarine_swaps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/submarine_swaps.py b/electrum/submarine_swaps.py index dbe0463ec..35dfff4b6 100644 --- a/electrum/submarine_swaps.py +++ b/electrum/submarine_swaps.py @@ -103,7 +103,7 @@ def now(): @stored_in('submarine_swaps') @attr.s class SwapData(StoredObject): - is_reverse = attr.ib(type=bool) + is_reverse = attr.ib(type=bool) # for whoever is running code (PoV of client or server) locktime = attr.ib(type=int) onchain_amount = attr.ib(type=int) # in sats lightning_amount = attr.ib(type=int) # in sats