Skip to content

Commit

Permalink
Merge pull request #66 from clightning4j/macros/fix_sendrawtransaction
Browse files Browse the repository at this point in the history
fix: use 6 block of estimation fee
  • Loading branch information
vincenzopalazzo authored Nov 16, 2022
2 parents 747d65f + d2bca92 commit debbcfc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class EstimateFeeBtc(
// TODO: try to use this transaction getmempoolinfo
// read this issue https://github.com/ElementsProject/lightning/issues/4473#issue-853325816
val params = Parameters("estimatesmartfee")
params.addParameter("conf_target", 2)
params.addParameter("conf_target", 6)
// params.addParameter("estimate_mode", "CONSERVATIVE")

val estimateFee = bitcoinRPC.makeBitcoinRequest(params, EstimateFeeBitcoin::class.java)
Expand Down

0 comments on commit debbcfc

Please sign in to comment.