mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 15:04:44 +01:00
Bugfix: RPC: JSON null is not "None"
This commit is contained in:
parent
26dcf39581
commit
f32ab443a9
1 changed files with 1 additions and 1 deletions
|
@ -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: {
|
||||
|
|
Loading…
Add table
Reference in a new issue