Skip to content

Commit

Permalink
Merge pull request #1218 from KeystoneHQ/feat/support_keystone_hot_app
Browse files Browse the repository at this point in the history
fix: convert memo string to hex string
  • Loading branch information
soralit authored Jul 22, 2024
2 parents a8fd9b9 + 5a3577e commit 0039d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/apps/ethereum/src/legacy_transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ impl TryFrom<EthTx> for LegacyTransaction {
eth_tx.gas_limit.parse::<u64>().unwrap(),
TransactionAction::Call(H160::from_str(eth_tx.to.as_str()).unwrap()),
eth_tx.value.parse::<u64>().unwrap(),
eth_tx.memo,
hex::encode(eth_tx.memo.as_bytes()),
);
Ok(legacy_transaction)
}
Expand Down

0 comments on commit 0039d5f

Please sign in to comment.