electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 5a4ab74c77089b56d58dbe2928381c35371ee148
parent dd73a4596eabc0d3730e2dddb9aa2be33e39b10d
Author: ThomasV <thomasv@electrum.org>
Date:   Fri, 13 Apr 2018 09:04:44 +0200

follow up 1aac9e59ed957898fceef99b29b9cc17d7843569

Diffstat:
Mlib/lnbase.py | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/lnbase.py b/lib/lnbase.py @@ -473,8 +473,7 @@ if __name__ == "__main__": set_testnet() pubkey = binascii.unhexlify(pubkey) port = int(port) - privkey = b"\x21"*32 + b"\x01" - peer = Peer(privkey, host, port, pubkey) + peer = Peer(host, port, pubkey) loop = asyncio.get_event_loop() loop.run_until_complete(peer.main_loop()) loop.close()