SatSale

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 6151efaf42e0ba62a3b84ca58074ac192cdc501e
parent 81a2b4ae2085ad78ede0b50a6a3ff6f6563e8a6e
Author: NicholasFarrow <nicholas.w.farrow@gmail.com>
Date:   Sun, 27 Dec 2020 14:06:47 +1100

Fix broken address generation

Diffstat:
Mpay/bitcoind.py | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/pay/bitcoind.py b/pay/bitcoind.py @@ -27,7 +27,6 @@ class btcd(invoice): raise Exception("Could not connect to bitcoind. Check your RPC / port tunneling settings and try again.") def check_payment(self): - self.address = self.get_address() transactions = self.rpc.listtransactions() relevant_txs = [tx for tx in transactions if tx['address'] == self.address]