Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumExplorer committed Nov 4, 2024
1 parent 7516381 commit 63201b2
Showing 1 changed file with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,14 @@ impl Drive {
// and updating the cache (https://github.com/dashpay/platform/pull/2305).
// Full nodes are stuck and proceeded after re-sync.
// For the mainnet chain, we enable this fix at the block when we consider the state is consistent.
let transaction = if network == Network::Dash && chain_id == "evo1" && block_height < 33000 {
// Old behaviour on mainnet
None
} else {
// We should use transaction
transaction
};
let transaction =
if network == Network::Dash && chain_id == "evo1" && block_height < 33000 {
// Old behaviour on mainnet
None
} else {
// We should use transaction
transaction
};

self.apply_batch_low_level_drive_operations(
None,
Expand Down

0 comments on commit 63201b2

Please sign in to comment.