Skip to content

Commit

Permalink
Merge pull request #8 from blinklabs-io/fix/golangci-lint-complaints
Browse files Browse the repository at this point in the history
fix: golangci-lint complaints on prints
  • Loading branch information
wolf31o2 committed Aug 30, 2023
2 parents eaeb81c + 41ca2c9 commit 3483c75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bursa.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func Run() {
addr := GetAddress(accountKey, cfg.Network, 0) // TODO: more addresses

fmt.Println("Loaded mnemonic and generated address...")
fmt.Println(fmt.Sprintf("MNEMONIC=%s", mnemonic))
fmt.Println(fmt.Sprintf("PAYMENT_ADDRESS=%s", addr.String()))
fmt.Println(fmt.Sprintf("STAKE_ADDRESS=%s", addr.ToReward().String()))
fmt.Printf("MNEMONIC=%s", mnemonic)
fmt.Printf("PAYMENT_ADDRESS=%s", addr.String())
fmt.Printf("STAKE_ADDRESS=%s", addr.ToReward().String())
}

0 comments on commit 3483c75

Please sign in to comment.