mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
Bugfix: Add missing signet key (#2368)
* add missing signet key * fix rpc tests
This commit is contained in:
parent
72fed92dd5
commit
622e111ba0
2 changed files with 9 additions and 1 deletions
|
|
@ -60,7 +60,13 @@ def get_rpcconfig(datadir=get_default_datadir()) -> dict:
|
|||
}
|
||||
"""
|
||||
config = {
|
||||
"bitcoin.conf": {"default": {}, "main": {}, "test": {}, "regtest": {}},
|
||||
"bitcoin.conf": {
|
||||
"default": {},
|
||||
"main": {},
|
||||
"test": {},
|
||||
"regtest": {},
|
||||
"signet": {},
|
||||
},
|
||||
"cookies": {},
|
||||
}
|
||||
if not os.path.isdir(datadir): # we don't know where to search for files
|
||||
|
|
|
|||
|
|
@ -57,6 +57,7 @@ def test_get_rpcconfig1():
|
|||
"main": {"rpcport": "8332"},
|
||||
"regtest": {"rpcport": "18443"},
|
||||
"test": {"rpcport": "18332"},
|
||||
"signet": {},
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -88,6 +89,7 @@ def test_get_rpcconfig2(empty_data_folder):
|
|||
"zmqpubhashblock": "tcp://127.0.0.1:29000",
|
||||
},
|
||||
"test": {},
|
||||
"signet": {},
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue