Skip to content

Commit 84d0200

Browse files
Bump substrate to 438f40d (#364)
* Use the latest substrate fork master * Update frontier to locked/humanode-2022-06-01
1 parent 2897482 commit 84d0200

File tree

7 files changed

+155
-155
lines changed

7 files changed

+155
-155
lines changed

Cargo.lock

Lines changed: 130 additions & 130 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/frontier-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish = false
66

77
[dependencies]
88
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
9-
pallet-ethereum = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
9+
pallet-ethereum = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
1010
sp-api = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
1111
sp-std = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
1212

crates/humanode-peer/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@ anyhow = "1"
2121
async-trait = "0.1"
2222
clap = { version = "3.1.6", features = ["derive"] }
2323
codec = { package = "parity-scale-codec", version = "3.0.0" }
24-
fc-consensus = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
25-
fc-db = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
26-
fc-mapping-sync = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
27-
fc-rpc = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
28-
fc-rpc-core = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
24+
fc-consensus = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
25+
fc-db = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
26+
fc-mapping-sync = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
27+
fc-rpc = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
28+
fc-rpc-core = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
2929
fdlimit = "0.2"
30-
fp-evm = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
30+
fp-evm = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
3131
frame-benchmarking = { git = "https://github.com/humanode-network/substrate", branch = "master", optional = true }
3232
frame-benchmarking-cli = { git = "https://github.com/humanode-network/substrate", branch = "master" }
3333
futures = "0.3"
3434
hex = "0.4.3"
3535
hex-literal = "0.3"
3636
libsecp256k1 = "0.6"
37-
pallet-dynamic-fee = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
37+
pallet-dynamic-fee = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
3838
pallet-im-online = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
3939
qr2term = "0.2"
4040
reqwest = "0.11"

crates/humanode-rpc/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ humanode-runtime = { version = "0.1", path = "../humanode-runtime" }
1515
primitives-frontier = { version = "0.1", path = "../primitives-frontier" }
1616
robonode-client = { version = "0.1", path = "../robonode-client" }
1717

18-
fc-db = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
19-
fc-rpc = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
20-
fc-rpc-core = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
21-
fp-rpc = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
22-
fp-storage = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
18+
fc-db = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
19+
fc-rpc = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
20+
fc-rpc-core = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
21+
fp-rpc = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
22+
fp-storage = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
2323
jsonrpsee = { version = "0.13.0", features = ["server", "macros"] }
2424
pallet-transaction-payment-rpc = { git = "https://github.com/humanode-network/substrate", branch = "master" }
2525
sc-client-api = { git = "https://github.com/humanode-network/substrate", branch = "master" }

crates/humanode-runtime/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ chrono = { version = "0.4.19", default-features = false }
2424
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
2525
"derive",
2626
] }
27-
fp-rpc = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
28-
fp-self-contained = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
27+
fp-rpc = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
28+
fp-self-contained = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
2929
frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/humanode-network/substrate", branch = "master" }
3030
frame-executive = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
3131
frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
@@ -35,13 +35,13 @@ frame-system-rpc-runtime-api = { default-features = false, git = "https://github
3535
hex-literal = { version = "0.3", optional = true }
3636
pallet-babe = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
3737
pallet-balances = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
38-
pallet-base-fee = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
39-
pallet-dynamic-fee = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
40-
pallet-ethereum = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
41-
pallet-evm = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
42-
pallet-evm-precompile-modexp = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
43-
pallet-evm-precompile-sha3fips = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
44-
pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
38+
pallet-base-fee = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
39+
pallet-dynamic-fee = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
40+
pallet-ethereum = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
41+
pallet-evm = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
42+
pallet-evm-precompile-modexp = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
43+
pallet-evm-precompile-sha3fips = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
44+
pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
4545
pallet-grandpa = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
4646
pallet-im-online = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
4747
pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }

crates/precompile-bioauth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88
pallet-bioauth = { version = "0.1", path = "../pallet-bioauth", default-features = false }
99

1010
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
11-
fp-evm = { git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28", default-features = false }
11+
fp-evm = { git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01", default-features = false }
1212
frame-support = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
1313
frame-system = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
1414
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }

crates/primitives-frontier/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ publish = false
77
[dependencies]
88
frontier-api = { version = "0.1", path = "../frontier-api", default-features = false }
99

10-
fp-rpc = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
11-
pallet-ethereum = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-05-28" }
10+
fp-rpc = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
11+
pallet-ethereum = { default-features = false, git = "https://github.com/humanode-network/frontier", branch = "locked/humanode-2022-06-01" }
1212
sp-api = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
1313
sp-blockchain = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }
1414
sp-runtime = { default-features = false, git = "https://github.com/humanode-network/substrate", branch = "master" }

0 commit comments

Comments
 (0)