| 813 | } |
| 814 | |
| 815 | static struct command_result *load_feerate(struct command *cmd, |
| 816 | struct splice_cmd *splice_cmd) |
| 817 | { |
| 818 | struct out_req *req; |
| 819 | |
| 820 | req = jsonrpc_request_start(cmd, "feerates", |
| 821 | feerate_get_result, splice_error, |
| 822 | splice_cmd); |
| 823 | |
| 824 | json_add_string(req->js, "style", "perkw"); |
| 825 | |
| 826 | return send_outreq(req); |
| 827 | } |
| 828 | |
| 829 | static struct amount_sat wallet_funding_amnt(struct splice_cmd *splice_cmd) |
| 830 | { |
no test coverage detected