rpc: minor.

This commit is contained in:
Christopher Jeffrey 2017-03-15 18:20:29 -07:00
parent 93c190d646
commit 0e5c542b49
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -204,8 +204,8 @@ RPC.prototype.resendWalletTransactions = co(function* resendWalletTransactions(a
RPC.prototype.addMultisigAddress = co(function* addMultisigAddress(args, help) {
if (help || args.length < 2 || args.length > 3) {
throw new RPCError(errs.MISC_ERROR, 'addmultisigaddress'
+ ' nrequired ["key",...] ( "account" )');
throw new RPCError(errs.MISC_ERROR,
'addmultisigaddress nrequired ["key",...] ( "account" )');
}
// Impossible to implement in bcoin (no address book).