File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ UniValue ParseNonRFCJSONValue(const std::string& strVal)
217
217
UniValue jVal;
218
218
if (!jVal.read (std::string (" [" )+strVal+std::string (" ]" )) ||
219
219
!jVal.isArray () || jVal.size ()!=1 )
220
- throw std::runtime_error (std::string (" Error parsing JSON:" )+ strVal);
220
+ throw std::runtime_error (std::string (" Error parsing JSON: " ) + strVal);
221
221
return jVal[0 ];
222
222
}
223
223
Original file line number Diff line number Diff line change 19
19
BLOCKS = 101
20
20
BALANCE = (BLOCKS - 100 ) * 50
21
21
22
- JSON_PARSING_ERROR = 'error: Error parsing JSON:foo'
22
+ JSON_PARSING_ERROR = 'error: Error parsing JSON: foo'
23
23
BLOCKS_VALUE_OF_ZERO = 'error: the first argument (number of blocks to generate, default: 1) must be an integer value greater than zero'
24
24
TOO_MANY_ARGS = 'error: too many arguments (maximum 2 for nblocks and maxtries)'
25
25
WALLET_NOT_LOADED = 'Requested wallet does not exist or is not loaded'
You can’t perform that action at this time.
0 commit comments