diff options
| author | Jonas Schnelli <[email protected]> | 2015-05-10 14:48:35 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-06-04 09:16:05 +0200 |
| commit | 6c7bee062437acbc078533fdcf8e53794031bf99 (patch) | |
| tree | 9af2921524e39c6c25df31fba9d1dd55e03ba04b /src/rpcserver.cpp | |
| parent | extend conversion to UniValue (diff) | |
| download | discoin-6c7bee062437acbc078533fdcf8e53794031bf99.tar.xz discoin-6c7bee062437acbc078533fdcf8e53794031bf99.zip | |
expicit set UniValue type to avoid empty values
Diffstat (limited to 'src/rpcserver.cpp')
| -rw-r--r-- | src/rpcserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index da0a8048b..3a54f1670 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -866,7 +866,7 @@ void JSONRequest::parse(const Value& valRequest) static Object JSONRPCExecOne(const Value& req) { - Object rpc_result; + UniValue rpc_result(UniValue::VOBJ); JSONRequest jreq; try { |