mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-09 12:19:24 +00:00
probable fix for some transaction creation bug
This commit is contained in:
parent
810981dd40
commit
3f5ebee2ee
1 changed files with 34 additions and 14 deletions
|
@ -133,21 +133,41 @@ class TxData {
|
|||
.reduce((total, amount) => total += amount)
|
||||
: null;
|
||||
|
||||
Amount? get amountWithoutChange =>
|
||||
recipients != null && recipients!.isNotEmpty
|
||||
? recipients!
|
||||
.where((e) => !e.isChange)
|
||||
.map((e) => e.amount)
|
||||
.reduce((total, amount) => total += amount)
|
||||
: null;
|
||||
Amount? get amountWithoutChange {
|
||||
if (recipients != null && recipients!.isNotEmpty) {
|
||||
if (recipients!.where((e) => !e.isChange).isEmpty) {
|
||||
return Amount(
|
||||
rawValue: BigInt.zero,
|
||||
fractionDigits: recipients!.first.amount.fractionDigits,
|
||||
);
|
||||
} else {
|
||||
return recipients!
|
||||
.where((e) => !e.isChange)
|
||||
.map((e) => e.amount)
|
||||
.reduce((total, amount) => total += amount);
|
||||
}
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Amount? get amountSparkWithoutChange =>
|
||||
sparkRecipients != null && sparkRecipients!.isNotEmpty
|
||||
? sparkRecipients!
|
||||
.where((e) => !e.isChange)
|
||||
.map((e) => e.amount)
|
||||
.reduce((total, amount) => total += amount)
|
||||
: null;
|
||||
Amount? get amountSparkWithoutChange {
|
||||
if (sparkRecipients != null && sparkRecipients!.isNotEmpty) {
|
||||
if (sparkRecipients!.where((e) => !e.isChange).isEmpty) {
|
||||
return Amount(
|
||||
rawValue: BigInt.zero,
|
||||
fractionDigits: sparkRecipients!.first.amount.fractionDigits,
|
||||
);
|
||||
} else {
|
||||
return sparkRecipients!
|
||||
.where((e) => !e.isChange)
|
||||
.map((e) => e.amount)
|
||||
.reduce((total, amount) => total += amount);
|
||||
}
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
int? get estimatedSatsPerVByte => fee != null && vSize != null
|
||||
? (fee!.raw ~/ BigInt.from(vSize!)).toInt()
|
||||
|
|
Loading…
Reference in a new issue