Skip to content

Commit

Permalink
fix: correct error message for account deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
jns-ps committed Oct 17, 2024
1 parent 4c412af commit 5af5344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/common/src/hashchain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ impl Hashchain {
}
Operation::CreateAccount(args) => {
if idx > 0 {
bail!("RegisterService operation must be the first entry");
bail!("CreateAccount operation must be the first entry");
}
operation.verify_user_signature(args.value.clone())
}
Expand Down

0 comments on commit 5af5344

Please sign in to comment.