11package multichain .command ;
22
3+ import multichain .command .MultichainException ;
34import multichain .command .builders .QueryBuilderMessaging ;
45import multichain .object .Address ;
56
@@ -10,13 +11,14 @@ public MessagingCommand(String ip, String port, String login, String password) {
1011 }
1112
1213 /**
13- * Verifies that message was approved by the owner of address by checking the
14- * base64-encoded digital signature provided.
14+ * Verifies that message was approved by the owner of address by checking
15+ * the base64-encoded digital signature provided.
1516 *
1617 * @param address
1718 * (Address, required) The owner address
1819 * @param signature
19- * (String, required) The base64-encoded digital signature to check
20+ * (String, required) The base64-encoded digital signature to
21+ * check
2022 * @param message
2123 * (String, required) The message
2224 * @return (Boolean) True if the message is approved, else false
@@ -27,12 +29,14 @@ public final boolean verifyMessage(Address address, String signature, String mes
2729 }
2830
2931 /**
30- * {@link #verifyMessage(Address, String, String)} with address in format string
32+ * {@link #verifyMessage(Address, String, String)} with address in format
33+ * string
3134 *
3235 * @param address
3336 * (String, required) The owner address
3437 * @param signature
35- * (String, required) The base64-encoded digital signature to check
38+ * (String, required) The base64-encoded digital signature to
39+ * check
3640 * @param message
3741 * (String, required) The message
3842 * @return (Boolean) True if the message is approved, else false
0 commit comments