mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 11:57:41 +00:00
11 lines
289 B
Dart
11 lines
289 B
Dart
class LelantusFeeData {
|
|
int changeToMint;
|
|
int fee;
|
|
List<int> spendCoinIndexes;
|
|
LelantusFeeData(this.changeToMint, this.fee, this.spendCoinIndexes);
|
|
|
|
@override
|
|
String toString() {
|
|
return "{changeToMint: $changeToMint, fee: $fee, spendCoinIndexes: $spendCoinIndexes}";
|
|
}
|
|
}
|