Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Update to latest substrate. (#32)
Browse files Browse the repository at this point in the history
* Update to latest substrate.

* Fix tests.

* cargo fmt --all

* Switch to master.
  • Loading branch information
tomusdrw committed Dec 11, 2020
1 parent 0b8fb24 commit 7aef40c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
24 changes: 12 additions & 12 deletions client/beefy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ parking_lot = "0.11"

beefy-primitives = { path = "../primitives" }

sp-api = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sp-utils = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }

sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "master" }
6 changes: 3 additions & 3 deletions client/beefy/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ beefy-gadget = { path = "../." }
beefy-primitives = { path = "../../primitives" }

codec = { version = "1.3.5", package = "parity-scale-codec", features = ["derive"] }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "td-mmr" }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
jsonrpc-core = "15.1.0"
jsonrpc-core-client = "15.1.0"
jsonrpc-derive = "15.1.0"
Expand Down

0 comments on commit 7aef40c

Please sign in to comment.