Explain more about serialized transactions

This commit is contained in:
Ori Newman 2022-09-09 13:12:18 +03:00
parent 4b97b2fa4b
commit 7eed8235c2

View File

@ -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)
}
}