Skip to content

Commit

Permalink
chore: change logging to decrease noise (keep-starknet-strange#1207)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-roak authored Oct 23, 2023
1 parent 2a4edbe commit 5c6279c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/pallets/starknet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5c6279c

Please sign in to comment.