Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
fc89e7d
upgrade v0.9.22
zqhxuyuan May 21, 2022
d7ca928
migrate jsonrpc to jsonrpsee
zqhxuyuan May 21, 2022
ebce4d7
update orml
zqhxuyuan May 21, 2022
fe73322
fix xcm test
zqhxuyuan May 22, 2022
87f92e6
fix e2e test
zqhxuyuan May 22, 2022
4977267
update stable-asset and orml
zqhxuyuan May 24, 2022
1641de0
update orml fmt
zqhxuyuan May 24, 2022
b1953ae
update evm-tests and merge orml master
zqhxuyuan May 24, 2022
0e35305
fix xcm-interface test
zqhxuyuan May 24, 2022
17379fc
fix polkadot xcm test
zqhxuyuan May 24, 2022
4c25e52
fix ci
zjb0807 May 25, 2022
e935ba9
update evm logger
zqhxuyuan May 25, 2022
af10556
Merge branch 'polkadot-v0.9.22' of https://github.com/AcalaNetwork/Ac…
zqhxuyuan May 25, 2022
78d020d
update deps
zqhxuyuan May 25, 2022
944ecb9
update predeploy contracts
zqhxuyuan May 25, 2022
2e00c5e
revert predeploy contracts
zqhxuyuan May 25, 2022
f450f0a
evm internal_error
zqhxuyuan May 25, 2022
e6d0448
fix bench evm (#2162)
ermalkaleci May 26, 2022
d38c778
update orml
ermalkaleci May 26, 2022
7b87217
fix bench
ermalkaleci May 26, 2022
8a9c69e
Merge remote-tracking branch 'origin/master' into polkadot-v0.9.22
May 26, 2022
2c89e3b
make bench-evm
May 26, 2022
5a1009a
ignore unknown key. will be counted by entry call
ermalkaleci May 26, 2022
94490da
make bench-evm
May 26, 2022
bb179ca
update tests
ermalkaleci May 26, 2022
759a926
cargo run --profile production --color=never --bin=acala --features=r…
May 26, 2022
5114efc
make bench-evm
May 27, 2022
5bea6b9
cargo run --profile production --color=never --bin=acala --features=r…
May 27, 2022
9eeec31
Revert "update tests"
ermalkaleci May 27, 2022
6bffbe0
udpate ts-test
ermalkaleci May 27, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update evm-tests and merge orml master
  • Loading branch information
zqhxuyuan committed May 24, 2022
commit b1953ae91a8a61ef4c633a36febf01bfc19f4f4e
2 changes: 1 addition & 1 deletion evm-tests
2 changes: 1 addition & 1 deletion modules/evm/src/bench/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl orml_tokens::Config for Runtime {
type OnDust = ();
type MaxLocks = ();
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type ReserveIdentifier = ReserveIdentifier;
type DustRemovalWhitelist = Nothing;
}

Expand Down
2 changes: 1 addition & 1 deletion modules/evm/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl orml_tokens::Config for Runtime {
type OnDust = ();
type MaxLocks = ();
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type ReserveIdentifier = ReserveIdentifier;
type DustRemovalWhitelist = Nothing;
}

Expand Down
2 changes: 1 addition & 1 deletion modules/honzon/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ impl orml_tokens::Config for Runtime {
type OnDust = ();
type MaxLocks = ();
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type ReserveIdentifier = ReserveIdentifier;
type DustRemovalWhitelist = Nothing;
}

Expand Down
2 changes: 1 addition & 1 deletion runtime/common/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ impl orml_tokens::Config for TestRuntime {
type OnDust = ();
type MaxLocks = ();
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type ReserveIdentifier = ReserveIdentifier;
type DustRemovalWhitelist = Nothing;
}

Expand Down