internal/musig2: fix typos [skip ci]

This commit is contained in:
cristiantroy 2024-01-18 20:24:52 +08:00
parent f778f8b24e
commit afa21953b5
No known key found for this signature in database
GPG Key ID: F4A8DF18702F57DA
2 changed files with 2 additions and 2 deletions

View File

@ -562,7 +562,7 @@ func (s *Session) Sign(msg [32]byte,
return nil, ErrSigningContextReuse
// We also need to make sure we have the combined nonce, otherwise this
// funciton was called too early.
// function was called too early.
case s.combinedNonce == nil:
return nil, ErrCombinedNonceUnavailable
}

View File

@ -1281,7 +1281,7 @@ func TestMuSigEarlyNonce(t *testing.T) {
msg := sha256.Sum256([]byte("let's get taprooty, LN style"))
// If we try to sign before we have the combined nonce, we shoudl get
// If we try to sign before we have the combined nonce, we should get
// an error.
_, err = session1.Sign(msg)
if !errors.Is(err, ErrCombinedNonceUnavailable) {