commit 975c7a177ed707e463e70b5017a83be7e6573e32
parent 0563af54534fa37bb8153209fd6fe6d70a495eb2
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date: Sat, 20 Dec 2025 23:15:29 +0900
spelling
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pkg/rest/mailbox.go b/pkg/rest/mailbox.go
@@ -238,7 +238,7 @@ type MailboxRegistrationRequest struct {
MailboxMetadata MailboxMetadata `json:"mailbox_metadata"`
// Signature by the mailbox's signing key affirming
- // the update of keys, of purpuse
+ // the update of keys, of purpose
// TALER_SIGNATURE_WALLET_MAILBOX_KEYS_UPDATE.
// The signature is created over the SHA-512 hash
// of (encryptionKeyType||encryptionKey||expiration)
@@ -773,7 +773,7 @@ func (m *Mailbox) Initialize(cfg MailboxConfig) {
pendingExpStr := cfg.Ini.Section("mailbox").Key("pending_registration_expiration").MustString("24h")
pendingExp, err := time.ParseDuration(pendingExpStr)
if err != nil {
- fmt.Printf("Failed to parse pending registraion expiration: %v", err)
+ fmt.Printf("Failed to parse pending registration expiration: %v", err)
os.Exit(1)
}
go func() {