mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 20:35:13 +00:00
constants.py: remove duplicate Simnet declaration
This commit is contained in:
parent
9853cc6f31
commit
8ffeb79d01
1 changed files with 3 additions and 10 deletions
|
@ -112,16 +112,6 @@ class BitcoinTestnet(AbstractNet):
|
||||||
BIP44_COIN_TYPE = 1
|
BIP44_COIN_TYPE = 1
|
||||||
|
|
||||||
|
|
||||||
class BitcoinSimnet(BitcoinTestnet):
|
|
||||||
ADDRTYPE_P2PKH = 0x3f
|
|
||||||
ADDRTYPE_P2SH = 0x7b
|
|
||||||
SEGWIT_HRP = "sb"
|
|
||||||
GENESIS = "683e86bd5c6d110d91b94b97137ba6bfe02dbbdb8e3dff722a669b5d69d77af6"
|
|
||||||
WIF_PREFIX = 0x00
|
|
||||||
DEFAULT_SERVERS = read_json('servers_regtest.json', {}) # Note: regtest!
|
|
||||||
CHECKPOINTS = []
|
|
||||||
|
|
||||||
|
|
||||||
class BitcoinRegtest(BitcoinTestnet):
|
class BitcoinRegtest(BitcoinTestnet):
|
||||||
|
|
||||||
SEGWIT_HRP = "bcrt"
|
SEGWIT_HRP = "bcrt"
|
||||||
|
@ -132,6 +122,9 @@ class BitcoinRegtest(BitcoinTestnet):
|
||||||
|
|
||||||
class BitcoinSimnet(BitcoinTestnet):
|
class BitcoinSimnet(BitcoinTestnet):
|
||||||
|
|
||||||
|
WIF_PREFIX = 0x64
|
||||||
|
ADDRTYPE_P2PKH = 0x3f
|
||||||
|
ADDRTYPE_P2SH = 0x7b
|
||||||
SEGWIT_HRP = "sb"
|
SEGWIT_HRP = "sb"
|
||||||
GENESIS = "683e86bd5c6d110d91b94b97137ba6bfe02dbbdb8e3dff722a669b5d69d77af6"
|
GENESIS = "683e86bd5c6d110d91b94b97137ba6bfe02dbbdb8e3dff722a669b5d69d77af6"
|
||||||
DEFAULT_SERVERS = read_json('servers_regtest.json', {})
|
DEFAULT_SERVERS = read_json('servers_regtest.json', {})
|
||||||
|
|
Loading…
Add table
Reference in a new issue