Skip to content

Commit

Permalink
fix(util/message): Fix the invalid value in MESSAGE_MAGIC.
Browse files Browse the repository at this point in the history
Signed-off-by: cryptcoin-junkey <[email protected]>
  • Loading branch information
cryptcoin-junkey committed May 21, 2022
1 parent 0d94a24 commit 26badb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .theia/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.server.launchMode": "Standard"
}
2 changes: 1 addition & 1 deletion src/util/message.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Text used to signify that a signed message follows and to prevent
* inadvertently signing a transaction.
*/
const std::string MESSAGE_MAGIC = "Bitcoin Signed Message:\n";
const std::string MESSAGE_MAGIC = "Monacoin Signed Message:\n";

MessageVerificationResult MessageVerify(
const std::string& address,
Expand Down

0 comments on commit 26badb2

Please sign in to comment.