Use CallRequest type from rust-web3 crate (#101)

* Use `CallRequest` type from rust-web3 crate

* Change CallRequest's `to` field to be optional

Required due to changes in upstream `rust-web3` crate.
This commit is contained in:
Hernando Castano
2020-05-20 11:53:41 -04:00
committed by Bastian Köcher
parent e16dd14e20
commit 792226c9fd
3 changed files with 10 additions and 13 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ serde = { version = "1.0.110", features = ["derive"] }
serde_json = "1.0.53"
sp-bridge-eth-poa = { path = "../../primitives/ethereum-poa" }
time = "0.2"
web3 = "0.11"
web3 = { git = "https://github.com/tomusdrw/rust-web3" }
# Substrate Based Dependencies
[dependencies.frame-system]