Skip to content

Commit e09c837

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 7ca4247 commit e09c837

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

fuzzer/src/mock.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ impl frame_system::Config for Test {
6565
type OnNewAccount = ();
6666
type OnKilledAccount = (Balances,);
6767
type SystemWeightInfo = ();
68+
type SS58Prefix = ();
6869
}
6970
parameter_types! {
7071
pub const ExistentialDeposit: Balance = 10;

src/mock.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ impl frame_system::Config for Test {
166166
type OnNewAccount = ();
167167
type OnKilledAccount = ();
168168
type SystemWeightInfo = ();
169+
type SS58Prefix = ();
169170
}
170171
impl pallet_balances::Config for Test {
171172
type MaxLocks = MaxLocks;

0 commit comments

Comments
 (0)