Skip to content

Commit

Permalink
chore: get rid of the conversion U256 to u64 for displaying
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Feb 14, 2024
1 parent a53ea0e commit abe8558
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions engine/src/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1439,8 +1439,7 @@ pub fn check_nonce<I: IO>(
if transaction_nonce != &account_nonce {
return Err(EngineErrorKind::IncorrectNonce(format!(
"ERR_INCORRECT_NONCE: ac: {}, tx: {}",
account_nonce.as_u64(),
transaction_nonce.as_u64()
account_nonce, transaction_nonce
)));
}

Expand Down

0 comments on commit abe8558

Please sign in to comment.