cake_wallet/cw_monero/lib/structs/pending_transaction.dart
2020-01-04 21:31:52 +02:00

23 lines
No EOL
430 B
Dart

import 'dart:ffi';
import 'package:ffi/ffi.dart';
class PendingTransactionRaw extends Struct {
@Int64()
int amount;
@Int64()
int fee;
Pointer<Utf8> hash;
String getHash() => Utf8.fromUtf8(hash);
}
class PendingTransactionDescription {
final int amount;
final int fee;
final String hash;
final int pointerAddress;
PendingTransactionDescription({this.amount, this.fee, this.hash, this.pointerAddress});
}