mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-19 01:04:43 +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:convert';
|
||||
import 'dart:convert' as convert;
|
||||
import 'dart:math';
|
||||
import 'package:collection/collection.dart';
|
||||
import 'package:crypto/crypto.dart';
|
||||
|
@ -467,7 +468,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
|
|||
if (status.mwebUtxosHeight != height) return;
|
||||
int amount = 0;
|
||||
Set<String> inputAddresses = {};
|
||||
var output = AccumulatorSink<Digest>();
|
||||
var output = convert.AccumulatorSink<Digest>();
|
||||
var input = sha256.startChunkedConversion(output);
|
||||
for (final outputId in spent) {
|
||||
final utxo = mwebUtxosBox.get(outputId);
|
||||
|
|
Loading…
Reference in a new issue