Fix problem with Gen TX (#6924)

Closes: #6908
This commit is contained in:
Jonathan Gimeno
2020-08-04 08:41:58 +02:00
committed by GitHub
parent 6d937443b2
commit 0daf3c3271
3 changed files with 115 additions and 23 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ func CalculateGas(
// PrintUnsignedStdTx builds an unsigned StdTx and prints it to os.Stdout.
func PrintUnsignedStdTx(txBldr tx.Factory, clientCtx client.Context, msgs []sdk.Msg) error {
err := tx.GenerateOrBroadcastTxWithFactory(clientCtx, txBldr, msgs...)
err := tx.GenerateTx(clientCtx, txBldr, msgs...)
return err
}