Substrate 3.0 (#232)

* Update substrate deps to 3.0.0 and 0.9.0

* Update substrate wasm tools

* Fixing errors for 3.0.0 compat

* Fixing more errors for 3.0.0 compat

* Use MultiAddress for test runtime

* Fmt

* Fix node test

* Pin Funty

* Update AccountInfo struct

* Add comment about funty pin
This commit is contained in:
Andrew Jones
2021-02-17 16:45:05 +00:00
committed by GitHub
parent 51c48f223a
commit 2c8e5211aa
17 changed files with 218 additions and 191 deletions
+18 -18
View File
@@ -18,25 +18,25 @@ log = "0.4.13"
structopt = "0.3.21"
parking_lot = "0.11.1"
sc-cli = { version = "0.8.1", features = ["wasmtime"] }
sp-core = "2.0.1"
sc-executor = { version = "0.8.1", features = ["wasmtime"] }
sc-service = { version = "0.8.1", features = ["wasmtime"] }
sp-inherents = "2.0.1"
sc-transaction-pool = "2.0.1"
sp-transaction-pool = "2.0.1"
sc-network = "0.8.1"
sc-consensus-aura = "0.8.1"
sp-consensus-aura = "0.8.1"
sp-consensus = "0.8.1"
sc-consensus = "0.8.1"
sc-finality-grandpa = "0.8.1"
sp-finality-grandpa = "2.0.1"
sc-client-api = "2.0.1"
sp-runtime = "2.0.1"
sc-basic-authorship = "0.8.1"
sc-cli = { version = "0.9.0", features = ["wasmtime"] }
sp-core = "3.0.0"
sc-executor = { version = "0.9.0", features = ["wasmtime"] }
sc-service = { version = "0.9.0", features = ["wasmtime"] }
sp-inherents = "3.0.0"
sc-transaction-pool = "3.0.0"
sp-transaction-pool = "3.0.0"
sc-network = "0.9.0"
sc-consensus-aura = "0.9.0"
sp-consensus-aura = "0.9.0"
sp-consensus = "0.9.0"
sc-consensus = "0.9.0"
sc-finality-grandpa = "0.9.0"
sp-finality-grandpa = "3.0.0"
sc-client-api = "3.0.0"
sp-runtime = "3.0.0"
sc-basic-authorship = "0.9.0"
test-node-runtime = { path = "runtime" }
[build-dependencies]
substrate-build-script-utils = "2.0.1"
substrate-build-script-utils = "3.0.0"