Skip to content

Commit

Permalink
Merge pull request #10 from zchn/patch-1
Browse files Browse the repository at this point in the history
Fix a bug in --address
  • Loading branch information
mdehoog committed Mar 24, 2024
2 parents e6647df + bf34b8e commit 7cebcb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func main() {
}

if address {
if s == nil {
if s != nil {
fmt.Printf("Signer: %s\n", s.address().String())
}
os.Exit(0)
Expand Down

0 comments on commit 7cebcb6

Please sign in to comment.