mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-29 21:55:58 +00:00
added another todo: check print
This commit is contained in:
parent
e836337253
commit
28f9fcaa0a
2 changed files with 3 additions and 2 deletions
|
@ -2666,8 +2666,8 @@ class BitcoinCashWallet extends CoinServiceAPI {
|
|||
], // dust limit is the minimum amount a change output should be
|
||||
))["vSize"] as int;
|
||||
//todo: check if print needed
|
||||
debugPrint("vSizeForOneOutput $vSizeForOneOutput");
|
||||
debugPrint("vSizeForTwoOutPuts $vSizeForTwoOutPuts");
|
||||
// debugPrint("vSizeForOneOutput $vSizeForOneOutput");
|
||||
// debugPrint("vSizeForTwoOutPuts $vSizeForTwoOutPuts");
|
||||
|
||||
// Assume 1 output, only for recipient and no change
|
||||
var feeForOneOutput = estimateTxFee(
|
||||
|
|
|
@ -51,6 +51,7 @@ class NotesService extends ChangeNotifier {
|
|||
_notes[txid] = note;
|
||||
await DB.instance
|
||||
.put<dynamic>(boxName: walletId, key: 'notes', value: _notes);
|
||||
//todo: check if this is needed
|
||||
Logging.instance.log("editOrAddNote: tx note saved", level: LogLevel.Info);
|
||||
await _refreshNotes();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue