Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
3 changes: 3 additions & 0 deletions app/grpc/tx/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,8 @@ 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,
}, nil
}
173 changes: 150 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.

4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ require (
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.9
github.com/cosmos/cosmos-sdk => github.com/celestiaorg/cosmos-sdk v0.51.3
github.com/cometbft/cometbft => /Users/ninabarbakadze/Desktop/celestia/celestia-core
github.com/cosmos/cosmos-sdk => /Users/ninabarbakadze/Desktop/celestia/cosmos-sdk
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: 0 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -781,12 +781,8 @@ github.com/bytedance/sonic v1.14.1/go.mod h1:gi6uhQLMbTdeP0muCnrjHLeCUPyb70ujhnN
github.com/bytedance/sonic/loader v0.3.0 h1:dskwH8edlzNMctoruo8FPTJDF3vLtDT0sXZwvZJyqeA=
github.com/bytedance/sonic/loader v0.3.0/go.mod h1:N8A3vUdtUebEY2/VQC0MyhYeKUFosQU6FxH2JmUe6VI=
github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ=
github.com/celestiaorg/celestia-core v0.39.9 h1:chJx0nho36tvhbtmiknwdP45aj82EePAntEPv6FtV0Y=
github.com/celestiaorg/celestia-core v0.39.9/go.mod h1:VKtY/eal34fhAX01PbPFdCBr1Po5Y4MP20TwF19p3CI=
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.3 h1:uZLe3lP5BaLTQqTCI0Kv3JxPIcAdvKSaPnDIvtCZYRE=
github.com/celestiaorg/cosmos-sdk v0.51.3/go.mod h1:KSCi5EM7aWwZRtCHCOH4K51a9OcjEKt4i/pr1txrnRA=
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
2 changes: 1 addition & 1 deletion pkg/user/parallel_tx_submission.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type SubmissionJob struct {
// SubmissionResult contains the result of a parallel transaction submission
type SubmissionResult struct {
Signer string
TxResponse *TxResponse
TxResponse *sdktypes.TxResponse
Error error
}

Expand Down
Loading
Loading