Skip to content

Commit

Permalink
Change SS58Prefixes (paritytech#739)
Browse files Browse the repository at this point in the history
* Workaround for SS58Prefix issues in the UI.

* Change prefixes.

Co-authored-by: adoerr <0xad@gmx.net>
  • Loading branch information
2 people authored and serban300 committed Apr 8, 2024
1 parent 97c0f36 commit fdccbb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bridges/bin/millau/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ parameter_types! {
read: 60_000_000, // ~0.06 ms = ~60 µs
write: 200_000_000, // ~0.2 ms = 200 µs
};
pub const SS58Prefix: u8 = 86;
pub const SS58Prefix: u8 = 60;
}

impl frame_system::Config for Runtime {
Expand Down
2 changes: 1 addition & 1 deletion bridges/bin/rialto/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ parameter_types! {
read: 60_000_000, // ~0.06 ms = ~60 µs
write: 200_000_000, // ~0.2 ms = 200 µs
};
pub const SS58Prefix: u8 = 84;
pub const SS58Prefix: u8 = 48;
}

impl frame_system::Config for Runtime {
Expand Down

0 comments on commit fdccbb6

Please sign in to comment.