Merge pull request #5224 from jmacxx/increase_withdrawal_fee

Increase min withdrawal tx fee to 15 sats/vB
This commit is contained in:
Christoph Atteneder 2021-02-24 09:10:37 +01:00 committed by GitHub
commit f4d6986308
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,6 +73,6 @@ public enum BaseCurrencyNetwork {
}
public long getDefaultMinFeePerVbyte() {
return 2;
return 15; // 2021-02-22 due to mempool congestion, increased from 2
}
}