mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-13 07:28:59 +01:00
Bugfix: RPC: JSON null is not "None"
This commit is contained in:
@@ -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: {
|
||||||
|
|||||||
Reference in New Issue
Block a user