Skip to content

Commit

Permalink
Merge branch 'dev' into from_address
Browse files Browse the repository at this point in the history
  • Loading branch information
tmrlvi committed Apr 26, 2022
2 parents 4b48a47 + 8d5faee commit 9ba4013
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/kaspawallet/broadcast.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func broadcast(conf *broadcastConfig) error {
fmt.Println("Transactions were sent successfully")
fmt.Println("Transaction ID(s): ")
for _, txID := range response.TxIDs {
fmt.Printf("\\t%s\\n", txID)
fmt.Printf("\t%s\n", txID)
}

return nil
Expand Down
2 changes: 1 addition & 1 deletion cmd/kaspawallet/send.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func send(conf *sendConfig) error {
fmt.Println("Transactions were sent successfully")
fmt.Println("Transaction ID(s): ")
for _, txID := range response.TxIDs {
fmt.Printf("\\t%s\\n", txID)
fmt.Printf("\t%s\n", txID)
}

return nil
Expand Down

0 comments on commit 9ba4013

Please sign in to comment.