mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
fix error message
This commit is contained in:
parent
514851f5f0
commit
19605d2d25
1 changed files with 2 additions and 1 deletions
|
@ -592,7 +592,8 @@ class MainDB {
|
||||||
});
|
});
|
||||||
return ids;
|
return ids;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
throw MainDBException("failed updateOrPutAddresses: $transactions", e);
|
throw MainDBException(
|
||||||
|
"failed updateOrPutTransactionV2s: $transactions", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue