]> git.codecow.com Git - libnemo.git/commitdiff
Fix error message typo.
authorChris Duncan <chris@zoso.dev>
Fri, 19 Sep 2025 07:19:09 +0000 (00:19 -0700)
committerChris Duncan <chris@zoso.dev>
Fri, 19 Sep 2025 07:19:09 +0000 (00:19 -0700)
src/lib/wallet/config.ts

index 7d039f36f15da2fcc534400839047c6171185eaa..286c060d644b0c70f46f4bb8db2a69f200e3485c 100644 (file)
@@ -29,6 +29,6 @@ export async function _config (type: WalletType, vault: Vault, settings: unknown
                        }
                }
        } catch (err) {
-               throw new Error('Failed to lock wallet', { cause: err })
+               throw new Error('Failed to configure wallet', { cause: err })
        }
 }