Pass bool true instead of "true" to json_add_bool(..., bool value)

This commit is contained in:
practicalswift 2017-12-28 19:24:38 +01:00 committed by Rusty Russell
parent db362e2e23
commit c6b5e72e3b

View File

@ -936,7 +936,7 @@ static void gossipd_getpeers_complete(struct subd *gossip, const u8 *msg,
type_to_string(response, struct wireaddr,
addrs + i));
json_array_end(response);
json_add_bool(response, "connected", "true");
json_add_bool(response, "connected", true);
json_add_string(response, "owner", gossip->name);
json_object_end(response);
}