mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-02-02 11:16:36 +00:00
Error fixes
This commit is contained in:
parent
045cf857fd
commit
357b08d4bf
1 changed files with 19 additions and 13 deletions
|
@ -38,7 +38,7 @@ import 'package:stackwallet/services/notifications_api.dart';
|
||||||
|
|
||||||
import 'package:stackwallet/services/event_bus/events/global/updated_in_background_event.dart';
|
import 'package:stackwallet/services/event_bus/events/global/updated_in_background_event.dart';
|
||||||
|
|
||||||
const int MINIMUM_CONFIRMATIONS = 1;
|
const int MINIMUM_CONFIRMATIONS = 10;
|
||||||
const int DUST_LIMIT = 294;
|
const int DUST_LIMIT = 294;
|
||||||
|
|
||||||
const String GENESIS_HASH_MAINNET =
|
const String GENESIS_HASH_MAINNET =
|
||||||
|
@ -396,7 +396,6 @@ class EthereumWallet extends CoinServiceAPI {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if ((await _secureStore.read(key: '${_walletId}_mnemonic')) != null) {
|
if ((await _secureStore.read(key: '${_walletId}_mnemonic')) != null) {
|
||||||
print("DUPLICATE MNEMONIC");
|
|
||||||
longMutex = false;
|
longMutex = false;
|
||||||
throw Exception("Attempted to overwrite mnemonic on restore!");
|
throw Exception("Attempted to overwrite mnemonic on restore!");
|
||||||
}
|
}
|
||||||
|
@ -405,6 +404,11 @@ class EthereumWallet extends CoinServiceAPI {
|
||||||
key: '${_walletId}_mnemonic', value: mnemonic.trim());
|
key: '${_walletId}_mnemonic', value: mnemonic.trim());
|
||||||
|
|
||||||
_credentials = EthPrivateKey.fromHex(StringToHex.toHexString(mnemonic));
|
_credentials = EthPrivateKey.fromHex(StringToHex.toHexString(mnemonic));
|
||||||
|
|
||||||
|
await DB.instance
|
||||||
|
.put<dynamic>(boxName: walletId, key: "id", value: _walletId);
|
||||||
|
await DB.instance
|
||||||
|
.put<dynamic>(boxName: walletId, key: "isFavorite", value: false);
|
||||||
} catch (e, s) {
|
} catch (e, s) {
|
||||||
Logging.instance.log(
|
Logging.instance.log(
|
||||||
"Exception rethrown from recoverFromMnemonic(): $e\n$s",
|
"Exception rethrown from recoverFromMnemonic(): $e\n$s",
|
||||||
|
@ -424,7 +428,8 @@ class EthereumWallet extends CoinServiceAPI {
|
||||||
if (longMutex) return false;
|
if (longMutex) return false;
|
||||||
if (_hasCalledExit) return false;
|
if (_hasCalledExit) return false;
|
||||||
Logging.instance.log("refreshIfThereIsNewData", level: LogLevel.Info);
|
Logging.instance.log("refreshIfThereIsNewData", level: LogLevel.Info);
|
||||||
|
Logging.instance.log("TX Tracker Pendings is ${txTracker.pendings}",
|
||||||
|
level: LogLevel.Info);
|
||||||
try {
|
try {
|
||||||
bool needsRefresh = false;
|
bool needsRefresh = false;
|
||||||
Set<String> txnsToCheck = {};
|
Set<String> txnsToCheck = {};
|
||||||
|
@ -435,16 +440,17 @@ class EthereumWallet extends CoinServiceAPI {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// for (String txid in txnsToCheck) {
|
for (String txid in txnsToCheck) {
|
||||||
// final txn = await _client.getTransactionByHash(txid);
|
final txn = await _client.getTransactionByHash(txid);
|
||||||
// int confirmations = txn["confirmations"] as int? ?? 0;
|
print("TXS TO CHECK IS $txn");
|
||||||
// bool isUnconfirmed = confirmations < MINIMUM_CONFIRMATIONS;
|
// int confirmations = txn["confirmations"] as int? ?? 0;
|
||||||
// if (!isUnconfirmed) {
|
// bool isUnconfirmed = confirmations < MINIMUM_CONFIRMATIONS;
|
||||||
// // unconfirmedTxs = {};
|
// if (!isUnconfirmed) {
|
||||||
// needsRefresh = true;
|
// // unconfirmedTxs = {};
|
||||||
// break;
|
// needsRefresh = true;
|
||||||
// }
|
// break;
|
||||||
// }
|
// }
|
||||||
|
}
|
||||||
// if (!needsRefresh) {
|
// if (!needsRefresh) {
|
||||||
// var allOwnAddresses = await _fetchAllOwnAddresses();
|
// var allOwnAddresses = await _fetchAllOwnAddresses();
|
||||||
// List<Map<String, dynamic>> allTxs =
|
// List<Map<String, dynamic>> allTxs =
|
||||||
|
|
Loading…
Reference in a new issue