Skip to content

Commit

Permalink
Merge pull request #252 from 0xcregis/251-fix-anychain-ethereum-jsons…
Browse files Browse the repository at this point in the history
…-inability-to-accomodate-big-number

fix: anychain ethereum jsons inability to accommodate big number
  • Loading branch information
loki-cmu authored Jul 5, 2024
2 parents 4b4476c + 2eba2a9 commit 9ef0a96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion anychain-ethereum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "anychain-ethereum"
description = "A Rust library for Ethereum-focused cryptocurrency wallets, enabling seamless transactions on the Ethereum blockchain"
version = "0.1.13"
version = "0.1.14"
keywords = ["blockchain", "crypto", "cryptocurrencies", "ethereum", "wallet"]

# Workspace inherited keys
Expand Down
2 changes: 1 addition & 1 deletion anychain-ethereum/src/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl EthereumTransactionParameters {
"function": "transfer",
"params": {
"to": to,
"amount": amount
"amount": amount.to_string(),
}
}))
}
Expand Down

0 comments on commit 9ef0a96

Please sign in to comment.