Browse Source

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

ppa-0.6.1
practicalswift 7 years ago
committed by Rusty Russell
parent
commit
c6b5e72e3b
  1. 2
      lightningd/peer_control.c

2
lightningd/peer_control.c

@ -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);
}

Loading…
Cancel
Save