From 7eed8235c298a594cbacb91f9bd2073141432c26 Mon Sep 17 00:00:00 2001 From: Ori Newman Date: Fri, 9 Sep 2022 13:12:18 +0300 Subject: [PATCH] Explain more about serialized transactions --- cmd/kaspawallet/send.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/kaspawallet/send.go b/cmd/kaspawallet/send.go index f27a6f09e..c251f984f 100644 --- a/cmd/kaspawallet/send.go +++ b/cmd/kaspawallet/send.go @@ -81,9 +81,9 @@ func send(conf *sendConfig) error { } if conf.Verbose { - fmt.Println("Serialized Transaction(s): ") + fmt.Println("Serialized Transaction(s) (can be parsed via the `parse` command or resent via `broadcast`): ") for _, signedTx := range signedTransactions { - fmt.Printf("\t%x\n", signedTx) + fmt.Printf("\t%x\n\n", signedTx) } }