Skip to content

Commit

Permalink
revert: ss58 prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Honza committed Dec 28, 2024
1 parent b085581 commit 6a6ef29
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions runtime/src/configs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@ impl frame_system::Config for Runtime {
/// Defines the data structure stored in each account
/// Uses the Balance type from pallet_balances
type AccountData = pallet_balances::AccountData<<Runtime as pallet_balances::Config>::Balance>;
/// The SS58 prefix used to generate addresses for this chain
/// Helps distinguish addresses between different chains
type SS58Prefix = ConstU16<888>;
/// Contains version information about the runtime
/// Used for runtime upgrades and compatibility
type Version = Version;
Expand Down
2 changes: 1 addition & 1 deletion test-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub type TestRuntimeCall = frame_system::Call<Test>;

parameter_types! {
pub const BlockHashCount: u64 = 250;
pub const SS58Prefix: u16 = 888;
pub const SS58Prefix: u16 = 42;
}

// Balance of an account.
Expand Down

0 comments on commit 6a6ef29

Please sign in to comment.