diff --git a/CHANGELOG.md b/CHANGELOG.md index d8de226393..89368a606d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Next release +- fix: change 'nonce too high' to log in debug instead of info - chore: update deps, vm ressource fee cost are now FixedU128, and stored in an hashmap - ci: change jobs order in the workflow diff --git a/crates/pallets/starknet/src/lib.rs b/crates/pallets/starknet/src/lib.rs index 20d2c5fae8..5efa674a92 100644 --- a/crates/pallets/starknet/src/lib.rs +++ b/crates/pallets/starknet/src/lib.rs @@ -757,7 +757,7 @@ pub mod pallet { // the future queue of the transaction pool. if sender_nonce < *transaction_nonce { log!( - info, + debug, "Nonce is too high. Expected: {:?}, got: {:?}. This transaction will be placed in the \ transaction pool and executed in the future when the nonce is reached.", sender_nonce,