| 1 | import 'package:cw_core/unspent_transaction_output.dart'; |
| 2 | |
| 3 | class WowneroUnspent extends Unspent { |
| 4 | WowneroUnspent( |
| 5 | String address, String hash, String keyImage, int value, bool isFrozen, this.isUnlocked) |
| 6 | : super(address, hash, value, 0, keyImage) { |
| 7 | this.isFrozen = isFrozen; |
| 8 | } |
| 9 | |
| 10 | final bool isUnlocked; |
| 11 | } |