mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
12 lines
289 B
Dart
12 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}";
|
||
|
}
|
||
|
}
|