-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[In-Progress] Use generic SS58 prefix. #522
base: main
Are you sure you want to change the base?
Conversation
runtime/foucoco/src/lib.rs
Outdated
@@ -313,7 +313,7 @@ impl Contains<RuntimeCall> for BaseFilter { | |||
RuntimeCall::Bounties(_) | | |||
RuntimeCall::ChildBounties(_) | | |||
RuntimeCall::ClientsInfo(_) | | |||
RuntimeCall::Treasury(_) | | |||
RuntimeCall::TreaSS58Prefixsury(_) | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change doesn't seem intended to me 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, not ready yet. Just the first commit and PR to keep track of it :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I'm sorry, I assumed it's ready already 😬
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's fine! Actually, it may be. But we also need to perform changes on UI of portal and vortex, tests scripts, etc.
runtime/pendulum/src/lib.rs
Outdated
@@ -408,7 +408,7 @@ impl frame_system::Config for Runtime { | |||
type BlockWeights = RuntimeBlockWeights; | |||
/// The maximum length of a block (in bytes). | |||
type BlockLength = RuntimeBlockLength; | |||
/// This is used as an identifier of the chain. 56 is the prefix for Pendulum | |||
/// Previous chain identifier prefix for address format: 57. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was 56 for Pendulum so we need to adjust the comment.
/// Previous chain identifier prefix for address format: 57. | |
/// Previous chain identifier prefix for address format: `56`. Now using the generic prefix `0`. |
runtime/foucoco/src/lib.rs
Outdated
@@ -408,7 +408,7 @@ impl frame_system::Config for Runtime { | |||
type BlockWeights = RuntimeBlockWeights; | |||
/// The maximum length of a block (in bytes). | |||
type BlockLength = RuntimeBlockLength; | |||
/// This is used as an identifier of the chain. 57 is the prefix for Foucoco | |||
/// Previous chain identifier prefix for address format: 57. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// Previous chain identifier prefix for address format: 57. | |
/// Previous chain identifier prefix for address format: `57`. Now uses the generic prefix `0`. |
runtime/amplitude/src/lib.rs
Outdated
@@ -406,7 +406,7 @@ impl frame_system::Config for Runtime { | |||
type BlockWeights = RuntimeBlockWeights; | |||
/// The maximum length of a block (in bytes). | |||
type BlockLength = RuntimeBlockLength; | |||
/// This is used as an identifier of the chain. 57 is the prefix for Amplitude | |||
/// Previous chain identifier prefix for address format: 57. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// Previous chain identifier prefix for address format: 57. | |
/// Previous chain identifier prefix for address format: `57`. Now uses the generic prefix `0`. |
Related to Tasks/#456.