mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
Merge branch 'master' of ssh://github.com/spesmilo/electrum
This commit is contained in:
commit
f56fbb509f
2 changed files with 14 additions and 14 deletions
|
@ -7,18 +7,18 @@ from blockchain import Blockchain
|
||||||
DEFAULT_PORTS = {'t':'50001', 's':'50002', 'h':'8081', 'g':'8082'}
|
DEFAULT_PORTS = {'t':'50001', 's':'50002', 'h':'8081', 'g':'8082'}
|
||||||
|
|
||||||
DEFAULT_SERVERS = {
|
DEFAULT_SERVERS = {
|
||||||
#'electrum.coinwallet.me': {'h': '8081', 's': '50002', 't': '50001', 'g': '8082'},
|
'ecdsa.org': DEFAULT_PORTS,
|
||||||
'electrum.hachre.de': {'h': '8081', 's': '50002', 't': '50001', 'g': '8082'},
|
'ecdsa.net': DEFAULT_PORTS,
|
||||||
'electrum.novit.ro': {'h': '8081', 's': '50002', 't': '50001', 'g': '8082'},
|
'electrum.hachre.de': DEFAULT_PORTS,
|
||||||
'electrum.stepkrav.pw': {'h': '8081', 's': '50002', 't': '50001', 'g': '8082'},
|
'electrum.novit.ro': DEFAULT_PORTS,
|
||||||
#'ecdsa.org': {'h': '8081', 's': '50002', 't': '50001', 'g': '8082'},
|
'electrum.coinwallet.me': DEFAULT_PORTS,
|
||||||
'electrum.no-ip.org': {'h': '80', 's': '50002', 't': '50001', 'g': '443'},
|
'cube.l0g.in': DEFAULT_PORTS,
|
||||||
'electrum.drollette.com': {'h': '5000', 's': '50002', 't': '50001', 'g': '8082'},
|
'bitcoin.epicinet.net': DEFAULT_PORTS,
|
||||||
'electrum.random.re': {'h': '80', 's': '110', 't': '50001', 'g': '443'},
|
'h.1209k.com': DEFAULT_PORTS,
|
||||||
'btc.medoix.com': {'h': '8081', 's': '50002', 't': '50001', 'g': '8082'},
|
'electrum.electricnewyear.net': DEFAULT_PORTS,
|
||||||
'electrum.stupidfoot.com': {'h': '8081', 's': '50002', 't': '50001', 'g': '8082'},
|
'erbium.sytes.net': DEFAULT_PORTS,
|
||||||
#'electrum.pdmc.net': {'h': '8081', 's': '50002', 't': '50001', 'g': '8082'},
|
'e2.pdmc.net':DEFAULT_PORTS,
|
||||||
'electrum.be': {'h': '8081', 's': '50002', 't': '50001', 'g': '8082'}
|
'electrum.thwg.org':DEFAULT_PORTS,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -639,9 +639,9 @@ class NewWallet:
|
||||||
rs = self.rebase_sequence(account, sequence)
|
rs = self.rebase_sequence(account, sequence)
|
||||||
dd = []
|
dd = []
|
||||||
for root, public_sequence in rs:
|
for root, public_sequence in rs:
|
||||||
c, K, _ = self.master_public_keys[root]
|
c, K, cK = self.master_public_keys[root]
|
||||||
s = '/' + '/'.join( map(lambda x:str(x), public_sequence) )
|
s = '/' + '/'.join( map(lambda x:str(x), public_sequence) )
|
||||||
dd.append( 'bip32(%s,%s,%s)'%(c,K, s) )
|
dd.append( 'bip32(%s,%s,%s)'%(c, cK, s) )
|
||||||
return '&'.join(dd)
|
return '&'.join(dd)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue