Skip to content

Commit

Permalink
fix: golangci-lint complaints on prints
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Gianelloni <[email protected]>
  • Loading branch information
wolf31o2 committed Aug 29, 2023
1 parent eaeb81c commit 41ca2c9
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 41ca2c9

Please sign in to comment.