From 4c39579fb9fba3a71824526a537be5d0918ba86d Mon Sep 17 00:00:00 2001 From: Ted Ian Osias Date: Sat, 6 Sep 2025 06:55:41 +0800 Subject: [PATCH] fix: change command to signmessage --- src/components/masternodes/MasternodeForm.jsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/masternodes/MasternodeForm.jsx b/src/components/masternodes/MasternodeForm.jsx index d9c9c788..bd31c714 100644 --- a/src/components/masternodes/MasternodeForm.jsx +++ b/src/components/masternodes/MasternodeForm.jsx @@ -45,15 +45,11 @@ function MasternodeForm() { }; /** - * function generate command signmessagebech32 || signmessage + * function generate command signmessage * @function */ const generateSignCommand = (collateralAddress, signMessage) => { - // check for new addresses to validate - /* Note: Previously, the differentiation with signmessagebech32 or signmessage was made to take into account the use cases of the addresses to be used, - in theory the signmessagebech32 command should apply to all - * */ - return `signmessagebech32 ${collateralAddress} ${signMessage}`.trim(); + return `signmessage ${collateralAddress} ${signMessage}`.trim(); }; /**