diff --git a/substrate/frame/system/src/lib.rs b/substrate/frame/system/src/lib.rs index 069217bcee46..4d44b7d59724 100644 --- a/substrate/frame/system/src/lib.rs +++ b/substrate/frame/system/src/lib.rs @@ -1558,10 +1558,12 @@ impl Pallet { if a.consumers > 0 { a.consumers -= 1; } else { - log::error!( + // For moonbeam the consumers make no sense as this counter exist only to know when we can remove the account + // And we never remove the account on moonbeam because we can't remove the nonce due to immortal eth transactions. + /*log::error!( target: LOG_TARGET, "Logic error: Unexpected underflow in reducing consumer", - ); + );*/ } }) }