Fixed xput test

This commit is contained in:
StephenButtolph 2020-03-27 17:10:37 -04:00
parent a0b999950d
commit 3847e64a0a
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ func (w *Wallet) CreateTx(assetID ids.ID, amount uint64, destAddr ids.ShortID) (
cred.Sigs = append(cred.Sigs, fixedSig)
}
tx.Creds = append(tx.Creds, &avm.Credential{Cred: cred})
tx.Creds = append(tx.Creds, cred)
}
b, err := w.codec.Marshal(tx)