URI: 
       tfix tests - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit d44afd96334f9d48dc0b28e0e6d24e416b17c18c
   DIR parent 707c7d569d25cef2092ee67145c7582b1ef0325d
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Fri,  5 Oct 2018 18:54:23 +0200
       
       fix tests
       
       Diffstat:
         M electrum/tests/test_lnhtlc.py       |       8 ++++----
       
       1 file changed, 4 insertions(+), 4 deletions(-)
       ---
   DIR diff --git a/electrum/tests/test_lnhtlc.py b/electrum/tests/test_lnhtlc.py
       t@@ -89,10 +89,10 @@ def create_test_channels(feerate=6000, local=None, remote=None):
            remote_amount = remote if remote is not None else (funding_sat * 1000 // 2)
            alice_raw = [ bip32("m/" + str(i)) for i in range(5) ]
            bob_raw = [ bip32("m/" + str(i)) for i in range(5,11) ]
       -    alice_privkeys = [lnbase.Keypair(lnbase.privkey_to_pubkey(x), x) for x in alice_raw]
       -    bob_privkeys = [lnbase.Keypair(lnbase.privkey_to_pubkey(x), x) for x in bob_raw]
       -    alice_pubkeys = [lnbase.OnlyPubkeyKeypair(x.pubkey) for x in alice_privkeys]
       -    bob_pubkeys = [lnbase.OnlyPubkeyKeypair(x.pubkey) for x in bob_privkeys]
       +    alice_privkeys = [lnutil.Keypair(lnbase.privkey_to_pubkey(x), x) for x in alice_raw]
       +    bob_privkeys = [lnutil.Keypair(lnbase.privkey_to_pubkey(x), x) for x in bob_raw]
       +    alice_pubkeys = [lnutil.OnlyPubkeyKeypair(x.pubkey) for x in alice_privkeys]
       +    bob_pubkeys = [lnutil.OnlyPubkeyKeypair(x.pubkey) for x in bob_privkeys]
        
            alice_seed = os.urandom(32)
            bob_seed = os.urandom(32)