using base10

This commit is contained in:
dd dd 2024-08-04 12:49:23 +02:00
parent 553b85d2b1
commit 46bb928646

View File

@ -10,6 +10,8 @@ import (
"github.com/nbd-wtf/go-nostr"
)
const ten = 10
func (e *Exit) announceExitNode(ctx context.Context) error {
if !e.config.Public {
return nil
@ -19,13 +21,11 @@ func (e *Exit) announceExitNode(ctx context.Context) error {
event := nostr.Event{
PubKey: e.publicKey,
CreatedAt: nostr.Now(),
Kind: protocol.KindAnnouncementEvent,
Kind: protocol.KindAnnouncementEvent,
Tags: nostr.Tags{
nostr.Tag{"expiration", strconv.FormatInt(time.Now().Add(time.Second*10).Unix(), 10)},
nostr.Tag{"expiration", strconv.FormatInt(time.Now().Add(time.Second*ten).Unix(), ten)},
},
}
err := event.Sign(e.config.NostrPrivateKey)
if err != nil {
slog.Error("could not sign event", "error", err)
@ -39,7 +39,7 @@ func (e *Exit) announceExitNode(ctx context.Context) error {
// do not return here, try to publish the event to other relays
}
}
time.Sleep(time.Second * 10)
time.Sleep(time.Second * ten)
}
}()
return nil