Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-raykov committed Nov 19, 2024
1 parent 36243a7 commit 29f054a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import (
func TestOCRKeys_OffChainPrivateKey(t *testing.T) {
t.Parallel()

k, err := New()
k, err := NewV2()
require.NoError(t, err)

sig, err := k.offChainSigning.Sign([]byte("hello world"))
sig, err := k.OffChainSigning.Sign([]byte("hello world"))

assert.NoError(t, err)
assert.NotEmpty(t, sig)
Expand Down

0 comments on commit 29f054a

Please sign in to comment.