We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebcbf32 commit 3981765Copy full SHA for 3981765
rust/rbac-registration/src/registration/cardano/mod.rs
@@ -497,11 +497,11 @@ impl RegistrationChainInner {
497
if self.latest_applied().point() >= cip509.origin().point() {
498
cip509.report().functional_validation(
499
&format!(
500
- "The provided registration is earlier {} than the current one {}",
+ "The provided registration is earlier {} than the latest applied one {}",
501
cip509.origin().point(),
502
self.current_tx_id_hash.point()
503
),
504
- "Provided registrations must be applied in the correct order.",
+ "Registrations must be applied in the correct ascending order.",
505
);
506
return None;
507
}
0 commit comments