aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuke Dashjr <[email protected]>2020-04-02 15:28:05 +0000
committerLuke Dashjr <[email protected]>2020-04-02 15:28:05 +0000
commitf32ab443a98e622afa601372454310aef1f380be (patch)
tree15b560fce78a693ff8fddc830eccfdb9e6037509 /src
parentBugfix: RPC: Don't use a continuation elipsis after an elision elipsis (diff)
downloaddiscoin-f32ab443a98e622afa601372454310aef1f380be.tar.xz
discoin-f32ab443a98e622afa601372454310aef1f380be.zip
Bugfix: RPC: JSON null is not "None"
Diffstat (limited to 'src')
-rw-r--r--src/rpc/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/util.cpp b/src/rpc/util.cpp
index c1f46f224..7e1fb7a59 100644
--- a/src/rpc/util.cpp
+++ b/src/rpc/util.cpp
@@ -610,7 +610,7 @@ void RPCResult::ToSections(Sections& sections, const OuterType outer_type, const
return;
}
case Type::NONE: {
- sections.PushSection({indent + "None" + maybe_separator, Description("json null")});
+ sections.PushSection({indent + "null" + maybe_separator, Description("json null")});
return;
}
case Type::STR: {