We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2562792 commit 6bc9808Copy full SHA for 6bc9808
testnet/stacks-node/src/tests/nakamoto_integrations.rs
@@ -12695,7 +12695,7 @@ fn test_sip_031_activation() {
12695
12696
// skip the test til we move to epoch 3.2
12697
if StacksEpochId::latest() != StacksEpochId::Epoch32 {
12698
- return;
+ //return;
12699
}
12700
12701
let (mut naka_conf, _miner_account) = naka_neon_integration_conf(None);
@@ -12788,6 +12788,11 @@ fn test_sip_031_activation() {
12788
{
12789
break;
12790
12791
+
12792
+ for block in test_observer::get_blocks().iter().rev() {
12793
+ println!("BLOCK {:?}", block);
12794
+ //let events = block.get("events").unwrap().as_array().unwrap();
12795
+ }
12796
12797
12798
info!(
0 commit comments