Skip to content

Commit f32ab44

Browse files
committed
Bugfix: RPC: JSON null is not "None"
1 parent 26dcf39 commit f32ab44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rpc/util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ void RPCResult::ToSections(Sections& sections, const OuterType outer_type, const
610610
return;
611611
}
612612
case Type::NONE: {
613-
sections.PushSection({indent + "None" + maybe_separator, Description("json null")});
613+
sections.PushSection({indent + "null" + maybe_separator, Description("json null")});
614614
return;
615615
}
616616
case Type::STR: {

0 commit comments

Comments
 (0)