File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
testnet/stacks-node/src/tests/signer Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -5176,8 +5176,12 @@ fn continue_after_fast_block_no_sortition() {
5176
5176
} )
5177
5177
. expect ( "Timed out waiting for boostrapped node to catch up to the miner" ) ;
5178
5178
5179
- let mining_pkh_1 = Hash160 :: from_node_public_key ( & StacksPublicKey :: from_private ( & conf. miner . mining_key . unwrap ( ) ) ) ;
5180
- let mining_pkh_2 = Hash160 :: from_node_public_key ( & StacksPublicKey :: from_private ( & conf_node_2. miner . mining_key . unwrap ( ) ) ) ;
5179
+ let mining_pkh_1 = Hash160 :: from_node_public_key ( & StacksPublicKey :: from_private (
5180
+ & conf. miner . mining_key . unwrap ( ) ,
5181
+ ) ) ;
5182
+ let mining_pkh_2 = Hash160 :: from_node_public_key ( & StacksPublicKey :: from_private (
5183
+ & conf_node_2. miner . mining_key . unwrap ( ) ,
5184
+ ) ) ;
5181
5185
debug ! ( "The miner key for miner 1 is {mining_pkh_1}" ) ;
5182
5186
debug ! ( "The miner key for miner 2 is {mining_pkh_2}" ) ;
5183
5187
@@ -5233,7 +5237,10 @@ fn continue_after_fast_block_no_sortition() {
5233
5237
. get_peer_info ( )
5234
5238
. expect ( "Failed to get peer info" )
5235
5239
. stacks_tip_height ;
5236
- Ok ( blocks_mined1. load ( Ordering :: SeqCst ) > blocks_processed_before_1 && stacks_height > stacks_height_before)
5240
+ Ok (
5241
+ blocks_mined1. load ( Ordering :: SeqCst ) > blocks_processed_before_1
5242
+ && stacks_height > stacks_height_before,
5243
+ )
5237
5244
} )
5238
5245
. unwrap ( ) ;
5239
5246
You can’t perform that action at this time.
0 commit comments