mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
8e7233b5c3
* migrate monero.dart from it's own repository to monero_c * show errors when invalid monero_c library is being used * Delete unused code * Delete unused code * Fix potential bug causing missing Polyseeds and tx-keys; Add Waring * Remove unused wownero-code * bump monero_c commit --------- Co-authored-by: Czarek Nakamoto <cyjan@mrcyjanek.net> Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
11 lines
324 B
Dart
11 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;
|
|
}
|