Skip to content

Commit

Permalink
chore: remove unnecessary printf
Browse files Browse the repository at this point in the history
  • Loading branch information
b00f committed Aug 23, 2024
1 parent fec3246 commit 02a7265
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions crypto/ed25519/private_key_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package ed25519_test

import (
"fmt"
"strings"
"testing"

Expand All @@ -20,9 +19,6 @@ func TestPrivateKeyEqualsTo(t *testing.T) {
assert.True(t, prv1.EqualsTo(prv1))
assert.False(t, prv1.EqualsTo(prv2))
assert.False(t, prv1.EqualsTo(prv3))

fmt.Printf("%x\n", prv1.PublicKey().Bytes())
fmt.Println(prv1.Sign([]byte{1}).String())
}

func TestPrivateKeyFromString(t *testing.T) {
Expand Down

0 comments on commit 02a7265

Please sign in to comment.