mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-19 09:15:11 +00:00
fix
This commit is contained in:
parent
d315617efa
commit
501e4998c7
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
import 'dart:convert' as convert;
|
||||||
import 'dart:math';
|
import 'dart:math';
|
||||||
import 'package:collection/collection.dart';
|
import 'package:collection/collection.dart';
|
||||||
import 'package:crypto/crypto.dart';
|
import 'package:crypto/crypto.dart';
|
||||||
|
@ -467,7 +468,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
|
||||||
if (status.mwebUtxosHeight != height) return;
|
if (status.mwebUtxosHeight != height) return;
|
||||||
int amount = 0;
|
int amount = 0;
|
||||||
Set<String> inputAddresses = {};
|
Set<String> inputAddresses = {};
|
||||||
var output = AccumulatorSink<Digest>();
|
var output = convert.AccumulatorSink<Digest>();
|
||||||
var input = sha256.startChunkedConversion(output);
|
var input = sha256.startChunkedConversion(output);
|
||||||
for (final outputId in spent) {
|
for (final outputId in spent) {
|
||||||
final utxo = mwebUtxosBox.get(outputId);
|
final utxo = mwebUtxosBox.get(outputId);
|
||||||
|
|
Loading…
Reference in a new issue