Port account_manager to stable futures (#1121)

* Port account_manager to stable futures

* Run async fns in tokio environment
This commit is contained in:
Pawan Dhananjay
2020-05-08 07:19:36 +05:30
committed by GitHub
parent 1f2acad0df
commit 8e81ea911d
4 changed files with 189 additions and 201 deletions

View File

@@ -25,6 +25,7 @@ validator_client = { path = "../validator_client" }
rayon = "1.3.0"
eth2_testnet_config = { path = "../eth2/utils/eth2_testnet_config" }
web3 = "0.10.0"
futures = "0.3.4"
futures = {version = "0.3.4", features = ["compat"]}
clap_utils = { path = "../eth2/utils/clap_utils" }
tokio = "0.2.20"
# reduce feature set
tokio = {version = "0.2.20", features = ["full"]}