File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
testnet/stacks-node/src/tests Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -133,10 +133,11 @@ fn setup_stx_btc_node(
133
133
134
134
info ! ( "Send pox contract-publish..." ) ;
135
135
136
+ let tx_fee = 100_000 ;
136
137
let tx = make_contract_publish (
137
138
publisher_private_key,
138
139
0 ,
139
- 10_000 ,
140
+ tx_fee ,
140
141
& pox_contract_id. name ,
141
142
pox_contract,
142
143
) ;
@@ -146,7 +147,7 @@ fn setup_stx_btc_node(
146
147
let tx = make_contract_publish (
147
148
publisher_private_key,
148
149
1 ,
149
- 10_000 ,
150
+ tx_fee ,
150
151
& stackerdb_contract_id. name ,
151
152
stackerdb_contract,
152
153
) ;
@@ -188,6 +189,7 @@ pub fn build_pox_contract(num_signers: u32) -> String {
188
189
}
189
190
190
191
#[ test]
192
+ #[ ignore]
191
193
fn test_stackerdb_dkg ( ) {
192
194
if env:: var ( "BITCOIND_TEST" ) != Ok ( "1" . into ( ) ) {
193
195
return ;
@@ -199,8 +201,8 @@ fn test_stackerdb_dkg() {
199
201
. init ( ) ;
200
202
201
203
// Generate Signer Data
202
- let num_signers: u32 = 100 ;
203
- let num_keys: u32 = 4000 ;
204
+ let num_signers: u32 = 10 ;
205
+ let num_keys: u32 = 400 ;
204
206
let publisher_private_key = StacksPrivateKey :: new ( ) ;
205
207
let signer_stacks_private_keys = ( 0 ..num_signers)
206
208
. map ( |_| StacksPrivateKey :: new ( ) )
You can’t perform that action at this time.
0 commit comments