@@ -1912,6 +1912,9 @@ static struct command_result *handle_rpc_command(struct command *cmd,
1912
1912
const char * maxfee = NULL ;
1913
1913
struct json_stream * response ;
1914
1914
1915
+ /* pay extra params */
1916
+ const jsmntok_t * maxfeepercent = NULL , * exemptfee = NULL ;
1917
+
1915
1918
if (!xpay -> take_over_pay )
1916
1919
goto dont_redirect ;
1917
1920
@@ -1945,7 +1948,7 @@ static struct command_result *handle_rpc_command(struct command *cmd,
1945
1948
if (amount_msat && json_tok_is_null (buf , amount_msat ))
1946
1949
amount_msat = NULL ;
1947
1950
} else if (params_tok -> type == JSMN_OBJECT ) {
1948
- const jsmntok_t * t , * maxfeepercent = NULL , * exemptfee = NULL ;
1951
+ const jsmntok_t * t ;
1949
1952
size_t i ;
1950
1953
1951
1954
json_for_each_obj (i , t , params_tok ) {
@@ -1973,25 +1976,25 @@ static struct command_result *handle_rpc_command(struct command *cmd,
1973
1976
goto dont_redirect ;
1974
1977
}
1975
1978
}
1976
- if (!bolt11 ) {
1977
- plugin_log (cmd -> plugin , LOG_INFORM ,
1978
- "Not redirecting pay (missing bolt11 parameter)" );
1979
- goto dont_redirect ;
1980
- }
1981
- /* If this returns NULL, we let pay handle the weird case */
1982
- if (!calc_maxfee (cmd , & maxfee , buf ,
1983
- bolt11 , amount_msat ,
1984
- exemptfee , maxfeepercent )) {
1985
- plugin_log (cmd -> plugin , LOG_INFORM ,
1986
- "Not redirecting pay (weird maxfee params)" );
1987
- goto dont_redirect ;
1988
- }
1989
1979
} else {
1990
1980
plugin_log (cmd -> plugin , LOG_INFORM ,
1991
1981
"Not redirecting pay (unexpected params type)" );
1992
1982
goto dont_redirect ;
1993
1983
}
1994
1984
1985
+ if (!bolt11 ) {
1986
+ plugin_log (cmd -> plugin , LOG_INFORM ,
1987
+ "Not redirecting pay (missing bolt11 parameter)" );
1988
+ goto dont_redirect ;
1989
+ }
1990
+ /* If this returns NULL, we let pay handle the weird case */
1991
+ if (!calc_maxfee (cmd , & maxfee , buf , bolt11 , amount_msat , exemptfee ,
1992
+ maxfeepercent )) {
1993
+ plugin_log (cmd -> plugin , LOG_INFORM ,
1994
+ "Not redirecting pay (weird maxfee params)" );
1995
+ goto dont_redirect ;
1996
+ }
1997
+
1995
1998
plugin_log (cmd -> plugin , LOG_INFORM , "Redirecting pay->xpay" );
1996
1999
response = jsonrpc_stream_success (cmd );
1997
2000
json_object_start (response , "replace" );
0 commit comments