From 706b98834ba8647e9b4961211f1f0074955323d9 Mon Sep 17 00:00:00 2001 From: sneurlax Date: Fri, 13 Oct 2023 10:52:28 -0500 Subject: [PATCH] add comment --- lib/services/mixins/fusion_wallet_interface.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/services/mixins/fusion_wallet_interface.dart b/lib/services/mixins/fusion_wallet_interface.dart index 1c04b4f3d..fb4eefac7 100644 --- a/lib/services/mixins/fusion_wallet_interface.dart +++ b/lib/services/mixins/fusion_wallet_interface.dart @@ -155,6 +155,7 @@ mixin FusionWalletInterface { final address = (await _getNextUnusedChangeAddress()) .copyWith(otherData: kReservedFusionAddress); + // Make sure the address is in the database as reserved for Fusion. final _address = await _db.getAddress(_walletId, address.value); if (_address != null) { await _db.updateAddress(_address, address);