Skip to content

Commit 6aa61db

Browse files
authored
Define ss58 prefix inside the runtime (#7810)
* Add SS58Prefix type to the frame_system config trait * Remove unused chain_id runtime interface
1 parent 0cb0eeb commit 6aa61db

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

benchmarking/src/mock.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ impl frame_system::Config for Test {
6767
type OnNewAccount = ();
6868
type OnKilledAccount = Balances;
6969
type SystemWeightInfo = ();
70+
type SS58Prefix = ();
7071
}
7172
parameter_types! {
7273
pub const ExistentialDeposit: Balance = 10;

src/mock.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ impl frame_system::Config for Test {
218218
type OnNewAccount = ();
219219
type OnKilledAccount = ();
220220
type SystemWeightInfo = ();
221+
type SS58Prefix = ();
221222
}
222223

223224
impl pallet_timestamp::Config for Test {

0 commit comments

Comments
 (0)