-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CT-1259] move account plus test functions to testutil #2444
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,14 +2,142 @@ package tx | |||||||||||||||||
|
||||||||||||||||||
import ( | ||||||||||||||||||
"fmt" | ||||||||||||||||||
"github.com/cosmos/cosmos-sdk/codec" | ||||||||||||||||||
"github.com/dydxprotocol/v4-chain/protocol/app/module" | ||||||||||||||||||
"math/rand" | ||||||||||||||||||
"time" | ||||||||||||||||||
|
||||||||||||||||||
"github.com/cosmos/cosmos-sdk/client" | ||||||||||||||||||
"github.com/cosmos/cosmos-sdk/codec" | ||||||||||||||||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types" | ||||||||||||||||||
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" | ||||||||||||||||||
sdk "github.com/cosmos/cosmos-sdk/types" | ||||||||||||||||||
|
||||||||||||||||||
"github.com/cosmos/cosmos-sdk/types/simulation" | ||||||||||||||||||
"github.com/cosmos/cosmos-sdk/types/tx/signing" | ||||||||||||||||||
authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" | ||||||||||||||||||
authtx "github.com/cosmos/cosmos-sdk/x/auth/tx" | ||||||||||||||||||
"github.com/dydxprotocol/v4-chain/protocol/app/module" | ||||||||||||||||||
"github.com/dydxprotocol/v4-chain/protocol/testutil/constants" | ||||||||||||||||||
"github.com/dydxprotocol/v4-chain/protocol/x/accountplus/types" | ||||||||||||||||||
) | ||||||||||||||||||
|
||||||||||||||||||
func MakeTxBuilder( | ||||||||||||||||||
ctx sdk.Context, | ||||||||||||||||||
gen client.TxConfig, | ||||||||||||||||||
msgs []sdk.Msg, | ||||||||||||||||||
feeAmt sdk.Coins, | ||||||||||||||||||
gas uint64, | ||||||||||||||||||
chainID string, | ||||||||||||||||||
accNums, accSeqs []uint64, | ||||||||||||||||||
signers, signatures []cryptotypes.PrivKey, | ||||||||||||||||||
selectedAuthenticators []uint64, | ||||||||||||||||||
) (client.TxBuilder, error) { | ||||||||||||||||||
sigs := make([]signing.SignatureV2, len(signers)) | ||||||||||||||||||
|
||||||||||||||||||
// create a random length memo | ||||||||||||||||||
r := rand.New(rand.NewSource(time.Now().UnixNano())) | ||||||||||||||||||
memo := simulation.RandStringOfLength(r, simulation.RandIntBetween(r, 0, 100)) | ||||||||||||||||||
signMode, err := authsigning.APISignModeToInternal(gen.SignModeHandler().DefaultMode()) | ||||||||||||||||||
if err != nil { | ||||||||||||||||||
return nil, err | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
// 1st round: set SignatureV2 with empty signatures, to set correct | ||||||||||||||||||
// signer infos. | ||||||||||||||||||
for i, p := range signers { | ||||||||||||||||||
sigs[i] = signing.SignatureV2{ | ||||||||||||||||||
PubKey: p.PubKey(), | ||||||||||||||||||
Data: &signing.SingleSignatureData{ | ||||||||||||||||||
SignMode: signMode, | ||||||||||||||||||
}, | ||||||||||||||||||
Sequence: accSeqs[i], | ||||||||||||||||||
} | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
baseTxBuilder := gen.NewTxBuilder() | ||||||||||||||||||
|
||||||||||||||||||
txBuilder, ok := baseTxBuilder.(authtx.ExtensionOptionsTxBuilder) | ||||||||||||||||||
if !ok { | ||||||||||||||||||
return nil, fmt.Errorf("expected authtx.ExtensionOptionsTxBuilder, got %T", baseTxBuilder) | ||||||||||||||||||
} | ||||||||||||||||||
if len(selectedAuthenticators) > 0 { | ||||||||||||||||||
value, err := codectypes.NewAnyWithValue(&types.TxExtension{ | ||||||||||||||||||
SelectedAuthenticators: selectedAuthenticators, | ||||||||||||||||||
}) | ||||||||||||||||||
if err != nil { | ||||||||||||||||||
return nil, err | ||||||||||||||||||
} | ||||||||||||||||||
txBuilder.SetNonCriticalExtensionOptions(value) | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
err = txBuilder.SetMsgs(msgs...) | ||||||||||||||||||
if err != nil { | ||||||||||||||||||
return nil, err | ||||||||||||||||||
} | ||||||||||||||||||
err = txBuilder.SetSignatures(sigs...) | ||||||||||||||||||
if err != nil { | ||||||||||||||||||
return nil, err | ||||||||||||||||||
} | ||||||||||||||||||
txBuilder.SetMemo(memo) | ||||||||||||||||||
txBuilder.SetFeeAmount(feeAmt) | ||||||||||||||||||
txBuilder.SetGasLimit(gas) | ||||||||||||||||||
|
||||||||||||||||||
// 2nd round: once all signer infos are set, every signer can sign. | ||||||||||||||||||
for i, p := range signatures { | ||||||||||||||||||
signerData := authsigning.SignerData{ | ||||||||||||||||||
ChainID: chainID, | ||||||||||||||||||
AccountNumber: accNums[i], | ||||||||||||||||||
Sequence: accSeqs[i], | ||||||||||||||||||
} | ||||||||||||||||||
signBytes, err := authsigning.GetSignBytesAdapter( | ||||||||||||||||||
ctx, gen.SignModeHandler(), signMode, signerData, txBuilder.GetTx()) | ||||||||||||||||||
if err != nil { | ||||||||||||||||||
panic(err) | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
sig, err := p.Sign(signBytes) | ||||||||||||||||||
if err != nil { | ||||||||||||||||||
panic(err) | ||||||||||||||||||
} | ||||||||||||||||||
sigs[i].Data.(*signing.SingleSignatureData).Signature = sig | ||||||||||||||||||
err = txBuilder.SetSignatures(sigs...) | ||||||||||||||||||
if err != nil { | ||||||||||||||||||
panic(err) | ||||||||||||||||||
} | ||||||||||||||||||
Comment on lines
+101
to
+104
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Avoid panicking; return errors instead When setting signatures in the Apply this diff: err = txBuilder.SetSignatures(sigs...)
if err != nil {
- panic(err)
+ return nil, err
} 📝 Committable suggestion
Suggested change
|
||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
return txBuilder, nil | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
// GenTx generates a signed mock transaction. | ||||||||||||||||||
func GenTx( | ||||||||||||||||||
ctx sdk.Context, | ||||||||||||||||||
gen client.TxConfig, | ||||||||||||||||||
msgs []sdk.Msg, | ||||||||||||||||||
feeAmt sdk.Coins, | ||||||||||||||||||
gas uint64, | ||||||||||||||||||
chainID string, | ||||||||||||||||||
accNums, accSeqs []uint64, | ||||||||||||||||||
signers, signatures []cryptotypes.PrivKey, | ||||||||||||||||||
selectedAuthenticators []uint64, | ||||||||||||||||||
) (sdk.Tx, error) { | ||||||||||||||||||
builder, err := MakeTxBuilder( | ||||||||||||||||||
ctx, | ||||||||||||||||||
gen, | ||||||||||||||||||
msgs, | ||||||||||||||||||
feeAmt, | ||||||||||||||||||
gas, | ||||||||||||||||||
chainID, | ||||||||||||||||||
accNums, | ||||||||||||||||||
accSeqs, | ||||||||||||||||||
signers, | ||||||||||||||||||
signatures, | ||||||||||||||||||
selectedAuthenticators, | ||||||||||||||||||
) | ||||||||||||||||||
if err != nil { | ||||||||||||||||||
return nil, err | ||||||||||||||||||
} | ||||||||||||||||||
return builder.GetTx(), nil | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
// Returns the encoded msg as transaction. Will panic if encoding fails. | ||||||||||||||||||
func MustGetTxBytes(msgs ...sdk.Msg) []byte { | ||||||||||||||||||
tx := constants.TestEncodingCfg.TxConfig.NewTxBuilder() | ||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid panicking; return errors instead
In the
MakeTxBuilder
function, panicking upon encountering an error during signing isn't recommended. Instead, consider returning the error to allow the caller to handle it appropriately.Apply this diff to modify the error handling:
📝 Committable suggestion