Skip to content

Commit

Permalink
minor.
Browse files Browse the repository at this point in the history
  • Loading branch information
fiatjaf committed Dec 2, 2023
1 parent 32c1969 commit a65bd94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nip46/signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func NewSigner(secretKey string) Signer {
return Signer{secretKey: secretKey}
}

func (p *Signer) AddRelay(url string, read bool, write bool) {
func (p *Signer) AddRelayToAdvertise(url string, read bool, write bool) {
p.RelaysToAdvertise[url] = relayReadWrite{read, write}
}

Expand Down
2 changes: 1 addition & 1 deletion subscription_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"time"
)

const RELAY = "wss://relay.nostr.bg"
const RELAY = "wss://nos.lol"

// test if we can fetch a couple of random events
func TestSubscribe(t *testing.T) {
Expand Down

0 comments on commit a65bd94

Please sign in to comment.