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 5778a5c commit 6efb1bbCopy full SHA for 6efb1bb
node/src/ledger/ledger_reducer.rs
@@ -1,5 +1,3 @@
1
-use openmina_core::bug_condition;
2
-
3
use crate::Substate;
4
5
use super::{
@@ -20,7 +18,11 @@ impl LedgerState {
20
18
{
21
19
if let Ok(state) = state_context.get_substate_mut() {
22
if result.alive_masks > 294 {
23
- bug_condition!(
+ // TODO(binier): should be a bug condition, but can't be
+ // because we get false positive during testing, since
+ // multiple nodes/ledger run in the same process.
24
+ openmina_core::log::warn!(
25
+ meta.time();
26
"ledger mask leak: more than 294 ledger masks ({}) detected!",
27
result.alive_masks
28
);
0 commit comments