set and use particl tx version #

s
This commit is contained in:
sneurlax 2024-06-11 11:42:41 -05:00
parent b87105773c
commit e10eb90511
2 changed files with 2 additions and 4 deletions

View file

@ -232,7 +232,7 @@ class Particl extends Bip39HDCurrency with ElectrumXCurrencyInterface {
}
@override
int get transactionVersion => 1;
int get transactionVersion => 160;
@override
BigInt get defaultFeeRate => BigInt.from(20000);

View file

@ -436,9 +436,7 @@ class ParticlWallet<T extends ElectrumXCurrencyInterface>
final txb = bitcoindart.TransactionBuilder(
network: convertedNetwork,
);
const version = 160; // buildTransaction overridden for Particl to set this.
// TODO: [prio=low] refactor overridden buildTransaction to use eg. cryptocurrency.networkParams.txVersion.
txb.setVersion(version);
txb.setVersion(cryptoCurrency.transactionVersion);
// Temp tx data for GUI while waiting for real tx from server.
final List<InputV2> tempInputs = [];