File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,9 @@ def getchaininfo(plugin, **kwargs):
69
69
"000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943" :
70
70
"test" ,
71
71
"0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206" :
72
- "regtest"
72
+ "regtest" ,
73
+ "00000008819873e925422c1ff0f99f7cc9bbb232af63a077a480a3633bee1ef6" :
74
+ "signet"
73
75
}
74
76
75
77
genesis_req = fetch (blockhash_url )
@@ -191,7 +193,7 @@ def estimatefees(plugin, **kwargs):
191
193
feerate_req = fetch (feerate_url )
192
194
assert feerate_req .status_code == 200
193
195
feerates = feerate_req .json ()
194
- if plugin .sauron_network == "test" :
196
+ if plugin .sauron_network == "test" or plugin . sauron_network == "signet" :
195
197
# FIXME: remove the hack if the test API is "fixed"
196
198
feerate = feerates .get ("144" , 1 )
197
199
slow = normal = urgent = very_urgent = int (feerate * 10 ** 3 )
You can’t perform that action at this time.
0 commit comments