style!: lint fixes for x/tx (#15748)

This commit is contained in:
Mark Rushakoff
2023-04-10 17:55:06 +00:00
committed by GitHub
parent 4684c854d4
commit 4cb71ceb6e
36 changed files with 120 additions and 112 deletions
@@ -382,7 +382,7 @@ func TestAminoJSON_Equivalence(t *testing.T) {
}
handlerOptions := signing_testutil.HandlerArgumentOptions{
ChainId: "test-chain",
ChainID: "test-chain",
Memo: "sometestmemo",
Msg: tt.pulsar,
AccNum: 1,
@@ -408,7 +408,7 @@ func TestAminoJSON_Equivalence(t *testing.T) {
theTx := txBuilder.GetTx()
legacySigningData := signing.SignerData{
ChainID: handlerOptions.ChainId,
ChainID: handlerOptions.ChainID,
Address: handlerOptions.SignerAddress,
AccountNumber: handlerOptions.AccNum,
Sequence: handlerOptions.AccSeq,
@@ -683,7 +683,7 @@ func TestAminoJSON_LegacyParity(t *testing.T) {
}
handlerOptions := signing_testutil.HandlerArgumentOptions{
ChainId: "test-chain",
ChainID: "test-chain",
Memo: "sometestmemo",
Msg: tc.pulsar,
AccNum: 1,
@@ -709,7 +709,7 @@ func TestAminoJSON_LegacyParity(t *testing.T) {
theTx := txBuilder.GetTx()
legacySigningData := signing.SignerData{
ChainID: handlerOptions.ChainId,
ChainID: handlerOptions.ChainID,
Address: handlerOptions.SignerAddress,
AccountNumber: handlerOptions.AccNum,
Sequence: handlerOptions.AccSeq,