File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
testnet/stacks-node/src/tests Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 81
81
- tests::epoch_25::microblocks_disabled
82
82
- tests::should_succeed_handling_malformed_and_valid_txs
83
83
- tests::nakamoto_integrations::simple_neon_integration
84
- - tests::nakamoto_integrations::simple_neon_integration_with_flash_blocks_on_epoch_3
84
+ - tests::nakamoto_integrations::flash_blocks_on_epoch_3
85
85
- tests::nakamoto_integrations::mine_multiple_per_tenure_integration
86
86
- tests::nakamoto_integrations::block_proposal_api_endpoint
87
87
- tests::nakamoto_integrations::miner_writes_proposed_block_to_stackerdb
Original file line number Diff line number Diff line change @@ -1718,15 +1718,15 @@ fn simple_neon_integration() {
1718
1718
/// * 30 blocks are mined after 3.0 starts. This is enough to mine across 2 reward cycles
1719
1719
/// * A transaction submitted to the mempool in 3.0 will be mined in 3.0
1720
1720
/// * The final chain tip is a nakamoto block
1721
- fn simple_neon_integration_with_flash_blocks_on_epoch_3 ( ) {
1721
+ fn flash_blocks_on_epoch_3 ( ) {
1722
1722
if env:: var ( "BITCOIND_TEST" ) != Ok ( "1" . into ( ) ) {
1723
1723
return ;
1724
1724
}
1725
1725
1726
1726
let ( mut naka_conf, _miner_account) = naka_neon_integration_conf ( None ) ;
1727
1727
let prom_bind = format ! ( "{}:{}" , "127.0.0.1" , 6000 ) ;
1728
1728
naka_conf. node . prometheus_bind = Some ( prom_bind. clone ( ) ) ;
1729
- naka_conf. miner . wait_on_interim_blocks = Duration :: from_secs ( 1000 ) ;
1729
+ naka_conf. miner . wait_on_interim_blocks = Duration :: from_secs ( 1 ) ;
1730
1730
let sender_sk = Secp256k1PrivateKey :: new ( ) ;
1731
1731
// setup sender + recipient for a test stx transfer
1732
1732
let sender_addr = tests:: to_addr ( & sender_sk) ;
You can’t perform that action at this time.
0 commit comments