rpc: skip input/outputs mangling if no gas is attached to invocation

This commit is contained in:
Roman Khimov 2019-11-29 18:00:08 +03:00
parent 8a5ac12df8
commit dccf440dca

View file

@ -167,9 +167,11 @@ func (c *Client) SignAndPushInvocationTx(script []byte, wif *keys.WIF, gas util.
fromAddress := wif.PrivateKey.Address() fromAddress := wif.PrivateKey.Address()
if gas > 0 {
if err = AddInputsAndUnspentsToTx(tx, fromAddress, gasID, gas, c); err != nil { if err = AddInputsAndUnspentsToTx(tx, fromAddress, gasID, gas, c); err != nil {
return txHash, errors.Wrap(err, "failed to add inputs and unspents to transaction") return txHash, errors.Wrap(err, "failed to add inputs and unspents to transaction")
} }
}
if err = SignTx(tx, wif); err != nil { if err = SignTx(tx, wif); err != nil {
return txHash, errors.Wrap(err, "failed to sign tx") return txHash, errors.Wrap(err, "failed to sign tx")