From 05857ab1906787c679e04c7aa5f1e176326f0154 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Sun, 8 Mar 2026 11:14:04 +0900 Subject: [PATCH] fix: typo in wallet error message ("walle" -> "wallet") --- wallet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet.go b/wallet.go index 8bebd29..9e93b7a 100644 --- a/wallet.go +++ b/wallet.go @@ -28,7 +28,7 @@ func prepareWallet(ctx context.Context, c *cli.Command) (*nip60.Wallet, func(), relays := sys.FetchOutboxRelays(ctx, pk, 3) w := nip60.LoadWallet(ctx, kr, sys.Pool, relays, nip60.WalletOptions{}) if w == nil { - return nil, nil, fmt.Errorf("error loading walle") + return nil, nil, fmt.Errorf("error loading wallet") } w.Processed = func(evt nostr.Event, err error) {