mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
add minfeerate parameter to bip78 payjoin urls
This commit is contained in:
parent
41636f7152
commit
9fc096569a
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ public class Payjoin {
|
||||||
try {
|
try {
|
||||||
String base64Psbt = psbt.getPublicCopy().toBase64String();
|
String base64Psbt = psbt.getPublicCopy().toBase64String();
|
||||||
|
|
||||||
String appendQuery = "v=1";
|
String appendQuery = "v=1&minfeerate=" + AppServices.getMinimumRelayFeeRate();
|
||||||
int changeOutputIndex = getChangeOutputIndex();
|
int changeOutputIndex = getChangeOutputIndex();
|
||||||
long maxAdditionalFeeContribution = 0;
|
long maxAdditionalFeeContribution = 0;
|
||||||
if(changeOutputIndex > -1) {
|
if(changeOutputIndex > -1) {
|
||||||
|
|
Loading…
Reference in a new issue