From 2def2b955b4afcbbc38621bb9e3a870d40bcdeb8 Mon Sep 17 00:00:00 2001 From: Daniel Liu <139250065@qq.com> Date: Wed, 3 Sep 2025 15:44:49 +0800 Subject: [PATCH] accounts: fix typo (#1413) --- accounts/accounts.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/accounts/accounts.go b/accounts/accounts.go index 8a66d93e58..be3df65abb 100644 --- a/accounts/accounts.go +++ b/accounts/accounts.go @@ -227,7 +227,9 @@ const ( // of starting any background processes such as automatic key derivation. WalletOpened - // WalletDropped + // WalletDropped is fired when a wallet is removed or disconnected, either via USB + // or due to a filesystem event in the keystore. This event indicates that the wallet + // is no longer available for operations. WalletDropped )