Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/grpc/tx/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,9 @@ func (s *txServer) TxStatus(ctx context.Context, req *TxStatusRequest) (*TxStatu
ExecutionCode: resTx.ExecutionCode,
Error: resTx.Error,
Status: resTx.Status,
GasWanted: resTx.GasWanted,
GasUsed: resTx.GasUsed,
Codespace: resTx.Codespace,
Signers: resTx.Signers,
}, nil
}
229 changes: 206 additions & 23 deletions app/grpc/tx/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions app/test/square_size_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,6 @@ func (s *SquareSizeIntegrationTest) SetupBlockSizeParams(t *testing.T, squareSiz

res, err := txClient.SubmitTx(s.cctx.GoContext(), []sdk.Msg{msgSubmitProp}, opt)
require.NoError(t, err)

res, err = txClient.ConfirmTx(s.cctx.GoContext(), res.TxHash)
require.NoError(t, err)
require.Equal(t, uint32(0), res.Code)

txService := sdktx.NewServiceClient(s.cctx.GRPCClient)
Expand Down
2 changes: 1 addition & 1 deletion cmd/celestia-appd/cmd/override_p2p_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ func TestOverrideP2PConfig_Integration(t *testing.T) {
configPath := filepath.Join(configDir, "config.toml")
tmcfg.WriteConfigFile(configPath, cfg)

// Create a mock cobra command with server context
// Create a mock cobra command with server context
cmd := &cobra.Command{
Use: "test",
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ replace (
cosmossdk.io/api => github.com/celestiaorg/cosmos-sdk/api v0.7.6
cosmossdk.io/x/upgrade => github.com/celestiaorg/cosmos-sdk/x/upgrade v0.2.0
github.com/cometbft/cometbft => github.com/celestiaorg/celestia-core v0.39.12
github.com/cosmos/cosmos-sdk => github.com/celestiaorg/cosmos-sdk v0.51.4
github.com/cosmos/cosmos-sdk => github.com/celestiaorg/cosmos-sdk v0.51.6
github.com/cosmos/ibc-go/v8 => github.com/celestiaorg/ibc-go/v8 v8.7.2
// Use ledger-cosmos-go v0.16.0 because v0.15.0 causes "hidapi: unknown failure"
// See https://github.com/celestiaorg/celestia-app/issues/5453
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -785,8 +785,8 @@ github.com/celestiaorg/celestia-core v0.39.12 h1:SvlGmZr6XmsSeruFDSyz2rQmCdAJT+6
github.com/celestiaorg/celestia-core v0.39.12/go.mod h1:GxCnrVUUJZ3dtpNlKfHw3otb5TqyOdwjXef1/pNqSzA=
github.com/celestiaorg/celestia-core v1.55.0-tm-v0.34.35 h1:FREwqZwPvYsodr1AqqEIyW+VsBnwTzJNtC6NFdZX8rs=
github.com/celestiaorg/celestia-core v1.55.0-tm-v0.34.35/go.mod h1:SI38xqZZ4ccoAxszUJqsJ/a5rOkzQRijzHQQlLKkyUc=
github.com/celestiaorg/cosmos-sdk v0.51.4 h1:4yQQ+3NqvfcrO3Im1dbzSPF7Ujvw8P0IIisRWVXjWLg=
github.com/celestiaorg/cosmos-sdk v0.51.4/go.mod h1:YRNOXtC4vo5FG1SSoj57yEUiidU8Pn3ofjqYlFdu8qg=
github.com/celestiaorg/cosmos-sdk v0.51.6 h1:sUDSbbg6SjPjWHW7mow4j6i+I8X8nHDmpojnPOeAwYI=
github.com/celestiaorg/cosmos-sdk v0.51.6/go.mod h1:z5sV0ONMM7Qww3FuLZ2xmqjFblbivkb/jmwQfnHAxrE=
github.com/celestiaorg/cosmos-sdk/api v0.7.6 h1:81in9Zk+noz0ko+hZFSSK8L1aawFN8/CmdcQAUhbiUU=
github.com/celestiaorg/cosmos-sdk/api v0.7.6/go.mod h1:1BgQSufu6ZQkst3YBIHDCo/TPUrhfU4fV7tOI0ftql8=
github.com/celestiaorg/cosmos-sdk/x/upgrade v0.2.0 h1:GyDYfK8dLETlUI7F+w+3QYQgAszUegMXgB6cTbDm7CA=
Expand Down
3 changes: 2 additions & 1 deletion pkg/user/mock_tx_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (

"github.com/celestiaorg/celestia-app/v6/app/grpc/tx"
"github.com/celestiaorg/celestia-app/v6/pkg/user"
"github.com/celestiaorg/celestia-app/v6/pkg/user/utils"
abci "github.com/cometbft/cometbft/abci/types"
"github.com/cometbft/cometbft/rpc/core"
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down Expand Up @@ -163,7 +164,7 @@ func setupTxClientWithMockServers(t *testing.T, broadcastHandlers []BroadcastHan
}

// Create TxClient with mock connection
encCfg, txClient, _ := setupTxClientWithDefaultParams(t)
encCfg, txClient, _ := utils.SetupTxClientWithDefaultParams(t)

// Build options list
clientOpts := opts
Expand Down
Loading