Bugfix: RPC: JSON null is not "None"

pull/764/head
Luke Dashjr 5 years ago
parent 26dcf39581
commit f32ab443a9

@ -610,7 +610,7 @@ void RPCResult::ToSections(Sections& sections, const OuterType outer_type, const
return; return;
} }
case Type::NONE: { case Type::NONE: {
sections.PushSection({indent + "None" + maybe_separator, Description("json null")}); sections.PushSection({indent + "null" + maybe_separator, Description("json null")});
return; return;
} }
case Type::STR: { case Type::STR: {

Loading…
Cancel
Save