diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2022-11-11 12:18:47 -0500 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2022-11-11 12:18:47 -0500 |
commit | 23b6e50fbdab5d2b3625c35421b9e60a20ea87fd (patch) | |
tree | a2b78d944ddc850a0f64483bfe49b2c4755e0347 /challenge/c37.go | |
parent | 7fc0eea5e7cba009f3f2b2359f4ecb9ee0002b88 (diff) |
challenge: fix go vet warnings
Diffstat (limited to 'challenge/c37.go')
-rw-r--r-- | challenge/c37.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge/c37.go b/challenge/c37.go index 4ff10e8..ffcfe93 100644 --- a/challenge/c37.go +++ b/challenge/c37.go @@ -70,7 +70,7 @@ func C37(args []string) { 16, ) if !ok { - fmt.Errorf("unable to process pub key") + fmt.Printf("unable to process pub key") return } if pow == 1 { |