Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
feat: new ethabi for error types (#700)
Browse files Browse the repository at this point in the history
  • Loading branch information
gakonst authored Dec 16, 2021
1 parent cf53924 commit 4d64745
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
11 changes: 7 additions & 4 deletions 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 ethers-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["ethereum", "web3", "celo", "ethers"]

[dependencies]
rlp = { version = "0.5.0", default-features = false }
ethabi = { version = "15.0", default-features = false, features = ["full-serde", "rlp"] }
ethabi = { git = "https://github.com/rust-ethereum/ethabi", branch = "master", default-features = false, features = ["full-serde", "rlp"] }
arrayvec = { version = "0.7.2", default-features = false }
rlp-derive = { version = "0.1.0", default-features = false }

Expand Down
1 change: 1 addition & 0 deletions ethers-core/src/abi/human_readable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ impl AbiParser {
constructor: None,
functions: BTreeMap::new(),
events: BTreeMap::new(),
errors: BTreeMap::new(),
receive: false,
fallback: false,
};
Expand Down

0 comments on commit 4d64745

Please sign in to comment.