| 278 | }; |
| 279 | |
| 280 | static struct command_result * |
| 281 | estimatefees_null_response(struct command *cmd) |
| 282 | { |
| 283 | struct json_stream *response = jsonrpc_stream_success(cmd); |
| 284 | |
| 285 | /* We give a floor, which is the standard minimum */ |
| 286 | json_array_start(response, "feerates"); |
| 287 | json_array_end(response); |
| 288 | json_add_u32(response, "feerate_floor", 1000); |
| 289 | |
| 290 | return command_finished(cmd, response); |
| 291 | } |
| 292 | |
| 293 | static struct command_result * |
| 294 | getrawblockbyheight_notfound(struct command *cmd) |
no test coverage detected