Increase minimum TX fee to 2 sats/vByte to fix #3106 (#3387)

This commit is contained in:
wiz 2019-10-10 19:55:20 +09:00 committed by sqrrm
parent f3950bd3c0
commit 679985d82e

View File

@ -73,6 +73,6 @@ public enum BaseCurrencyNetwork {
}
public long getDefaultMinFeePerByte() {
return 1;
return 2;
}
}