Skip to content

Commit d64c99e

Browse files
authored
use account provider (#361)
1 parent 91bad6d commit d64c99e

File tree

19 files changed

+73
-63
lines changed

19 files changed

+73
-63
lines changed

Cargo.dev.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ members = [
1818
resolver = "2"
1919

2020
[patch.crates-io]
21-
frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
22-
frame-support = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
23-
frame-system = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
24-
pallet-balances = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
25-
pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
26-
pallet-scheduler = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
27-
pallet-treasury = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
28-
sp-api = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
29-
sp-application-crypto = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
30-
sp-arithmetic = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
31-
sp-core = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
32-
sp-inherents = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
33-
sp-io = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
34-
sp-runtime = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
35-
sp-runtime-interface = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
36-
sp-std = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
37-
sp-trie = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
38-
sp-version = { git = "https://github.com/paritytech/substrate.git", rev = "8b3e4c86bc5a86570a3091e470011604fb46d324" }
21+
frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
22+
frame-support = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
23+
frame-system = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
24+
pallet-balances = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
25+
pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
26+
pallet-scheduler = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
27+
pallet-treasury = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
28+
sp-api = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
29+
sp-application-crypto = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
30+
sp-arithmetic = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
31+
sp-core = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
32+
sp-inherents = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
33+
sp-io = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
34+
sp-runtime = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
35+
sp-runtime-interface = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
36+
sp-std = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
37+
sp-trie = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }
38+
sp-version = { git = "https://github.com/paritytech/substrate.git", rev = "5a94966e91fcd20d5a7981ae8186090221d8f096" }

auction/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.111", optional = true }
12-
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
1313
sp-runtime = { version = "2.0.1", default-features = false }
1414
sp-std = { version = "2.0.1", default-features = false }
1515
frame-support = { version = "2.0.1", default-features = false }

authority/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.111", optional = true }
12-
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
1313
sp-runtime = { version = "2.0.1", default-features = false }
1414
sp-std = { version = "2.0.1", default-features = false }
1515
frame-support = { version = "2.0.1", default-features = false }

authority/src/mock.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use frame_system::{ensure_root, ensure_signed, EnsureRoot};
1313
use sp_core::H256;
1414
use sp_runtime::{
1515
testing::Header,
16-
traits::{BadOrigin, Block as BlockT, IdentityLookup},
16+
traits::{BadOrigin, IdentityLookup},
1717
DispatchResult, Perbill,
1818
};
1919

benchmarking/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
paste = "0.1.16"
12-
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
1313
sp-api = { version = "2.0.1", default-features = false }
1414
sp-runtime-interface = { version = "2.0.1", default-features = false }
1515
sp-runtime = { version = "2.0.1", default-features = false }

currencies/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.111", optional = true }
12-
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
1313
sp-runtime = { version = "2.0.1", default-features = false }
1414
sp-io = { version = "2.0.1", default-features = false }
1515
sp-std = { version = "2.0.1", default-features = false }

gradually-update/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Laminar Developers <[email protected]>"]
88
edition = "2018"
99

1010
[dependencies]
11-
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
11+
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
1212
frame-support = { version = "2.0.1", default-features = false }
1313
frame-system = { version = "2.0.1", default-features = false }
1414
sp-io = { version = "2.0.1", default-features = false }

nft/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.111", optional = true }
12-
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
1313
sp-std = { version = "2.0.1", default-features = false }
1414
sp-runtime = { version = "2.0.1", default-features = false }
1515

oracle/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies]
1111
serde = { version = "1.0.111", optional = true }
12-
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
12+
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
1313

1414
sp-application-crypto = { version = "2.0.1", default-features = false }
1515
sp-io = { version = "2.0.1", default-features = false }

oracle/rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Laminar Developers <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
codec = { package = "parity-scale-codec", version = "1.3.0" }
8+
codec = { package = "parity-scale-codec", version = "2.0.0" }
99
jsonrpc-core = "15.0.0"
1010
jsonrpc-core-client = "15.0.0"
1111
jsonrpc-derive = "15.0.0"

0 commit comments

Comments
 (0)