@@ -34,14 +34,14 @@ def add_options(self, parser):
34
34
parser .add_option ("--parent_binpath" , dest = "parent_binpath" , default = "" ,
35
35
help = "Use a different binary for launching nodes" )
36
36
parser .add_option ("--parent_type" , dest = "parent_type" , default = "elements" ,
37
- help = "Type of parent nodes {elements, bitcoin}" )
37
+ help = "Type of parent nodes {elements, bitcoin, signet }" )
38
38
39
39
def setup_network (self , split = False ):
40
40
self .nodes = []
41
41
self .extra_args = []
42
42
43
- if self .options .parent_type not in ['elements' , 'bitcoin' ]:
44
- raise Exception ("Invalid option --parent_type=%s, valid options: elements, bitcoin" % self .options .parent_type )
43
+ if self .options .parent_type not in ['elements' , 'bitcoin' , 'signet' ]:
44
+ raise Exception ("Invalid option --parent_type=%s, valid values: { elements, bitcoin, signet} " % self .options .parent_type )
45
45
46
46
if self .options .parent_type == 'bitcoin' and self .options .parent_binpath == "" :
47
47
raise Exception ("Can't run with --parent_type=bitcoin without specifying --parent_binpath" )
@@ -62,7 +62,21 @@ def setup_network(self, split=False):
62
62
"-port=" + str (p2p_port (n )),
63
63
"-rpcport=" + str (rpc_port (n ))
64
64
])
65
- else :
65
+ elif self .options .parent_type == 'signet' :
66
+ self .parent_chain = 'signet'
67
+ rpc_u , rpc_p = rpc_auth_pair (n )
68
+ self .extra_args .append ([
69
+ "-printtoconsole=0" ,
70
+ "-signet_blockscript=4104db082f6133b7d9cdb7be60d8384c818ae61233c20485b438e8c1d7772b7f2dbdc04f2f7273d534df0e6a54c8b333994f6275bb921df2438e9a672438e4ed4969ac" ,
71
+ "-signet_siglen=77" ,
72
+ "-signet_seednode=178.128.221.177" ,
73
+ "-port=" + str (p2p_port (n )),
74
+ "-rpcport=" + str (rpc_port (n )),
75
+ "-addresstype=legacy" , # To make sure bitcoind gives back p2pkh no matter version
76
+ "-deprecatedrpc=validateaddress" ,
77
+ "-fallbackfee=0.00001" ,
78
+ ])
79
+ elif self .options .parent_type == 'elements' :
66
80
self .parent_chain = 'parent'
67
81
self .extra_args .append ([
68
82
"-conf=dummy" ,
@@ -79,6 +93,8 @@ def setup_network(self, split=False):
79
93
80
94
self .binary = self .options .parent_binpath if self .options .parent_binpath != "" else None
81
95
self .nodes .append (start_node (n , self .options .tmpdir , self .extra_args [n ], binary = self .binary , chain = self .parent_chain , cookie_auth = use_cookie_auth ))
96
+ if self .options .parent_type == 'signet' :
97
+ self .nodes [n ].importprivkey ('8Hh8jNjkx1aSCgEk3iq9Vo2APZUSDQJVt3rJ2BRpb5Tavqb68vW' )
82
98
83
99
connect_nodes_bi (self .nodes , 0 , 1 )
84
100
self .parentgenesisblockhash = self .nodes [0 ].getblockhash (0 )
@@ -111,6 +127,14 @@ def setup_network(self, split=False):
111
127
'-con_parent_chain_signblockscript=%s' % parent_chain_signblockscript ,
112
128
'-con_parent_pegged_asset=%s' % parent_pegged_asset ,
113
129
])
130
+ elif self .options .parent_type == 'signet' :
131
+ args .extend ([
132
+ '-con_parent_is_signet=1' ,
133
+ '-con_parent_signet_siglen=77' ,
134
+ '-parentpubkeyprefix=125' ,
135
+ '-parentscriptprefix=87' ,
136
+ '-con_parent_chain_signblockscript=4104db082f6133b7d9cdb7be60d8384c818ae61233c20485b438e8c1d7772b7f2dbdc04f2f7273d534df0e6a54c8b333994f6275bb921df2438e9a672438e4ed4969ac' ,
137
+ ])
114
138
115
139
if used_cookie_auth :
116
140
# Need to specify where to find parent cookie file
0 commit comments