Skip to content

Commit

Permalink
better debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
jcnelson committed Sep 27, 2020
1 parent 63841eb commit 6f52eff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testnet/stacks-node/src/neon_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -736,9 +736,9 @@ impl InitializedNeonNode {
}
};

debug!("Mining tenure's last consensus hash: {}, stacks tip consensus hash: {}",
&burn_block.consensus_hash,
&stacks_tip.consensus_hash);
debug!("Mining tenure's last consensus hash: {} (height {}), stacks tip consensus hash: {} (height {})",
&burn_block.consensus_hash, burn_block.block_height,
&stacks_tip.consensus_hash, parent_snapshot.block_height);

let coinbase_nonce = {
let principal = keychain.origin_address().unwrap().into();
Expand Down

0 comments on commit 6f52eff

Please sign in to comment.