Update to latest Substrate master (#320)

* Make `collator::Network` require `Send + Sync` to make it work

* Update packages

* Update to latest Substrate

* Make it compile and make tests work

* Use `polkadot-master`

* Fix CI

* Remove `build.sh` from readmes

* Delete old stuff

* Bring one back
This commit is contained in:
Bastian Köcher
2019-07-09 16:33:49 +02:00
committed by André Silva
parent d99f721540
commit c0b065837e
28 changed files with 728 additions and 4717 deletions
+1
View File
@@ -15,6 +15,7 @@ rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", br
[dev-dependencies]
tiny-keccak = "1.4"
adder = { path = "../test-parachains/adder" }
[features]
default = ["std"]
+1 -1
View File
@@ -60,7 +60,7 @@ impl Externalities for DummyExt {
}
}
const TEST_CODE: &[u8] = include_bytes!("res/adder.wasm");
const TEST_CODE: &[u8] = adder::WASM_BINARY;
fn hash_state(state: u64) -> [u8; 32] {
tiny_keccak::keccak256(state.encode().as_slice())
Binary file not shown.