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

Commit f23ce3e

Browse files
authored
Bump Substrate (#686)
* update to latest renames * Bump Substrate * Bump substrate
1 parent 1a3cf0b commit f23ce3e

File tree

6 files changed

+170
-160
lines changed

6 files changed

+170
-160
lines changed

Cargo.lock

+165-155
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

primitives/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2018"
88
serde = { version = "1.0.102", optional = true, features = ["derive"] }
99
parity-scale-codec = { version = "1.1.0", default-features = false, features = ["bit-vec", "derive"] }
1010
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
11-
application-crypto = { package = "sc-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
11+
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
1212
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false }
1313
sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
1414
rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }

rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jsonrpc-core = "14.0.3"
1010
polkadot-primitives = { path = "../primitives" }
1111
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
1212
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
13-
txpool-api = { package = "sp-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
13+
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
1414
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
1515
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
1616
polkadot-runtime = { path = "../runtime" }

runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ sp-core = { git = "https://github.com/paritytech/substrate", default-features =
2727
sp-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
2828
sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
2929
version = { package = "sp-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
30-
tx-pool-api = { package = "sp-transaction-pool-api", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
30+
tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
3131
block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
3232

3333
authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }

service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ inherents = { package = "sp-inherents", git = "https://github.com/paritytech/sub
3535
service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
3636
telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
3737
txpool = { package = "sc-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
38-
txpool-api = { package = "sp-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
38+
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
3939
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
4040
pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
4141
pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }

validation/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytec
2424
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
2525
consensus = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
2626
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
27-
txpool-api = { package = "sp-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
27+
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
2828
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
2929
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
3030
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }

0 commit comments

Comments
 (0)