feat: update gonuts dependency

This commit is contained in:
leonardo
2025-08-17 22:33:14 +02:00
committed by fiatjaf
parent fa0db40822
commit 6de0bc6073
4 changed files with 53 additions and 3 deletions

View File

@@ -11,7 +11,9 @@ import (
"github.com/btcsuite/btcd/btcec/v2"
"github.com/decred/dcrd/dcrec/secp256k1/v4"
"github.com/elnosh/gonuts/cashu/nuts/nut13"
"github.com/nbd-wtf/go-nostr"
"github.com/nbd-wtf/go-nostr/nip60/client"
)
type Wallet struct {
@@ -254,6 +256,18 @@ func (w *Wallet) AddMint(ctx context.Context, urls ...string) error {
return fmt.Errorf("can't do write operations: missing PublishUpdate function")
}
keysetIdList := []string{}
for i := range w.Mints {
keysets, err := client.GetAllKeysets(ctx, w.Mints[i])
if err != nil {
return err
}
for j := range keysets {
keysetIdList = append(keysetIdList, keysets[j].Id)
}
}
for _, url := range urls {
url, err := nostr.NormalizeHTTPURL(url)
if err != nil {
@@ -261,6 +275,18 @@ func (w *Wallet) AddMint(ctx context.Context, urls ...string) error {
}
if !slices.Contains(w.Mints, url) {
keysets, err := client.GetAllKeysets(ctx, url)
if err != nil {
return err
}
for j := range keysets {
err = nut13.CheckCollidingKeysets(keysetIdList, []string{keysets[j].Id})
if err != nil {
return err
}
keysetIdList = append(keysetIdList, keysets[j].Id)
}
w.Mints = append(w.Mints, url)
}
}