Use auth instead of func interface

This commit is contained in:
Aleksandr Bezobchuk 2020-03-24 18:56:20 -04:00
parent 486fa5b4b0
commit 33c090ee17
No known key found for this signature in database
GPG Key ID: 7DAC30FBD99879B0
2 changed files with 4 additions and 18 deletions

View File

@ -5,7 +5,6 @@ import (
"strings"
"github.com/spf13/viper"
"github.com/tendermint/tendermint/crypto"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/cosmos/cosmos-sdk/crypto/keys"
@ -26,8 +25,6 @@ type Factory struct {
keybase keys.Keybase
txGenerator Generator
accountRetriever AccountRetriever
feeFn func(gas uint64, amount sdk.Coins) sdk.Fee
sigFn func(pk crypto.PubKey, sig []byte) sdk.Signature
accountNumber uint64
sequence uint64
gas uint64
@ -107,18 +104,6 @@ func (f Factory) WithGas(gas uint64) Factory {
return f
}
// WithSigFn returns a copy of the Builder with an updated tx signature constructor.
func (f Factory) WithSigFn(sigFn func(pk crypto.PubKey, sig []byte) sdk.Signature) Factory {
f.sigFn = sigFn
return f
}
// WithFeeFn returns a copy of the Builder with an updated fee constructor.
func (f Factory) WithFeeFn(feeFn func(gas uint64, amount sdk.Coins) sdk.Fee) Factory {
f.feeFn = feeFn
return f
}
// WithFees returns a copy of the Builder with an updated fee.
func (f Factory) WithFees(fees string) Factory {
parsedFees, err := sdk.ParseCoins(fees)

View File

@ -16,6 +16,7 @@ import (
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/crypto/keys"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth"
)
type (
@ -187,7 +188,7 @@ func BuildUnsignedTx(txf Factory, msgs ...sdk.Msg) (ClientTx, error) {
}
tx := txf.txGenerator.NewTx()
tx.SetFee(txf.feeFn(txf.gas, fees))
tx.SetFee(auth.NewStdFee(txf.gas, fees))
tx.SetMsgs(msgs...)
tx.SetMemo(txf.memo)
tx.SetSignatures(nil)
@ -206,7 +207,7 @@ func BuildSimTx(txf Factory, msgs ...sdk.Msg) ([]byte, error) {
// Create an empty signature literal as the ante handler will populate with a
// sentinel pubkey.
tx.SetSignatures(txf.sigFn(nil, nil))
tx.SetSignatures(auth.NewStdSignature(nil, nil))
return tx.Marshal()
}
@ -292,7 +293,7 @@ func Sign(txf Factory, name, passphrase string, tx ClientTx) ([]byte, error) {
return nil, err
}
tx.SetSignatures(txf.sigFn(pubkey, sigBytes))
tx.SetSignatures(auth.NewStdSignature(pubkey, sigBytes))
return tx.Marshal()
}