Skip to content

Commit 075a315

Browse files
fix mocks
1 parent 8a80bc7 commit 075a315

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

currencies/src/mock.rs

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ impl orml_tokens::Config for Runtime {
8080
type ExistentialDeposits = ExistentialDeposits;
8181
type OnDust = orml_tokens::TransferDust<Runtime, DustAccount>;
8282
type MaxLocks = ConstU32<100_000>;
83+
type MaxReserves = ConstU32<100_000>;
84+
type ReserveIdentifier = [u8; 8];
8385
type DustRemovalWhitelist = Nothing;
8486
}
8587

xtokens/src/mock/para.rs

+2
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ impl orml_tokens::Config for Runtime {
8484
type ExistentialDeposits = ExistentialDeposits;
8585
type OnDust = ();
8686
type MaxLocks = ConstU32<50>;
87+
type MaxReserves = ConstU32<50>;
88+
type ReserveIdentifier = [u8; 8];
8789
type DustRemovalWhitelist = Everything;
8890
}
8991

xtokens/src/mock/para_relative_view.rs

+2
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ impl orml_tokens::Config for Runtime {
8787
type ExistentialDeposits = ExistentialDeposits;
8888
type OnDust = ();
8989
type MaxLocks = ConstU32<50>;
90+
type MaxReserves = ConstU32<50>;
91+
type ReserveIdentifier = [u8; 8];
9092
type DustRemovalWhitelist = Everything;
9193
}
9294

0 commit comments

Comments
 (0)