We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9633dd0 commit ef39cdcCopy full SHA for ef39cdc
tests/systemtests/tx_test.go
@@ -49,7 +49,7 @@ func TestQueryBySig(t *testing.T) {
49
qc := tx.NewServiceClient(sut.RPCClient(t))
50
51
// create unsign tx
52
- bankSendCmdArgs := []string{"tx", "bank", "send", valAddr, receiverAddr, fmt.Sprintf("%d%s", transferAmount, denom), "--fees=10stake", "--sign-mode=direct", "--generate-only"}
+ bankSendCmdArgs := []string{"tx", "bank", "send", valAddr, receiverAddr, fmt.Sprintf("%d%s", transferAmount, denom), "--fees=10stake", fmt.Sprintf("--chain-id=%s", sut.chainID), "--sign-mode=direct", "--generate-only"}
53
unsignedTx := cli.RunCommandWithArgs(bankSendCmdArgs...)
54
fmt.Println("unsignedTx", unsignedTx)
55
txFile := StoreTempFile(t, []byte(unsignedTx))
0 commit comments