mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
12 lines
324 B
Dart
12 lines
324 B
Dart
|
import 'package:cw_core/unspent_transaction_output.dart';
|
||
|
|
||
|
class WowneroUnspent extends Unspent {
|
||
|
WowneroUnspent(
|
||
|
String address, String hash, String keyImage, int value, bool isFrozen, this.isUnlocked)
|
||
|
: super(address, hash, value, 0, keyImage) {
|
||
|
this.isFrozen = isFrozen;
|
||
|
}
|
||
|
|
||
|
final bool isUnlocked;
|
||
|
}
|