mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 07:17:53 +00:00
Spaces in strings
One added space + one removed space.
This commit is contained in:
parent
fedd060d81
commit
331544bc37
@ -632,7 +632,7 @@ Value sendmany(const Array& params, bool fHelp)
|
|||||||
{
|
{
|
||||||
CBitcoinAddress address(s.name_);
|
CBitcoinAddress address(s.name_);
|
||||||
if (!address.IsValid())
|
if (!address.IsValid())
|
||||||
throw JSONRPCError(-5, string("Invalid Bitcoin address:")+s.name_);
|
throw JSONRPCError(-5, string("Invalid Bitcoin address: ")+s.name_);
|
||||||
|
|
||||||
if (setAddress.count(address))
|
if (setAddress.count(address))
|
||||||
throw JSONRPCError(-8, string("Invalid parameter, duplicated address: ")+s.name_);
|
throw JSONRPCError(-8, string("Invalid parameter, duplicated address: ")+s.name_);
|
||||||
@ -1389,7 +1389,7 @@ Value encryptwallet(const Array& params, bool fHelp)
|
|||||||
|
|
||||||
// BDB seems to have a bad habit of writing old data into
|
// BDB seems to have a bad habit of writing old data into
|
||||||
// slack space in .dat files; that is bad if the old data is
|
// slack space in .dat files; that is bad if the old data is
|
||||||
// unencrypted private keys. So:
|
// unencrypted private keys. So:
|
||||||
StartShutdown();
|
StartShutdown();
|
||||||
return "wallet encrypted; Bitcoin server stopping, restart to run with encrypted wallet";
|
return "wallet encrypted; Bitcoin server stopping, restart to run with encrypted wallet";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user