From 53daf4f9e3922245216fd395b0b0a0bbcd4a7a51 Mon Sep 17 00:00:00 2001 From: avoidaway Date: Sat, 16 Mar 2024 16:06:33 +0800 Subject: [PATCH] chore: fix comment Signed-off-by: avoidaway --- .../com/sparrowwallet/sparrow/wallet/SettingsWalletForm.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/sparrowwallet/sparrow/wallet/SettingsWalletForm.java b/src/main/java/com/sparrowwallet/sparrow/wallet/SettingsWalletForm.java index 7ad6fdd5..5264340d 100644 --- a/src/main/java/com/sparrowwallet/sparrow/wallet/SettingsWalletForm.java +++ b/src/main/java/com/sparrowwallet/sparrow/wallet/SettingsWalletForm.java @@ -121,7 +121,7 @@ public class SettingsWalletForm extends WalletForm { } //Returns true for any change, other than a keystore label change, to trigger a full wallet refresh - //Even though this is not strictly necessary for some changes, it it better to refresh on saving so background transaction history updates on the old wallet have no effect/are not lost + //Even though this is not strictly necessary for some changes, it is better to refresh on saving so background transaction history updates on the old wallet have no effect/are not lost private boolean isRefreshNecessary(Wallet original, Wallet changed) { if(!original.isValid() || !changed.isValid()) { return true;