swap the nonce & chain check order in stack

This commit is contained in:
rigel rozanski
2017-07-18 12:08:29 +02:00
committed by Ethan Frey
parent 9fd250209e
commit 007230e583
6 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -73,11 +73,11 @@ func doSendTx(cmd *cobra.Command, args []string) error {
if err != nil {
return err
}
tx, err = WrapChainTx(tx)
tx, err = WrapNonceTx(tx)
if err != nil {
return err
}
tx, err = WrapNonceTx(tx)
tx, err = WrapChainTx(tx)
if err != nil {
return err
}