Skip to content

Commit

Permalink
Fix: log full address of sender in submit call (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
birchmd committed Nov 1, 2021
1 parent 8b1439f commit 5fb6e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ mod contract {
.sdk_expect("ERR_INVALID_ECDSA_SIGNATURE");

#[cfg(feature = "log")]
sdk::log(crate::prelude::format!("signer_public_key 0x{}", sender).as_str());
sdk::log(crate::prelude::format!("signer_address {:?}", sender).as_str());

Engine::check_nonce(&sender, signed_transaction.nonce()).sdk_unwrap();

Expand Down

0 comments on commit 5fb6e14

Please sign in to comment.