Skip to content
Cosmopediaby Unity Nodes
DiscussionsCosmos-SDKRedelegation worked but with errorsForum ↗

Redelegation worked but with errors

Cosmos-SDK2 posts962 views1 likesLast activity Mar 2019
AZ
azulmarinoOP
Mar 2019

Running full node on Mac Mojave 10.14.2 Beta (18C38b) gaiacli tx staking redelegate source dest 2000000 --ledger --from azulmarino --chain-id cosmoshub-1 --gas-adjustment 1.25 --gas auto --gas-prices 0.025uatom --trace gas estimate: 234817 confirm transaction before signing and broadcasting [Y/n]: y Response: ERROR: Response error: RPC error -32603 - Internal error: Timed out waiting for tx to be included in a block github.com/cosmos/cosmos-sdk/vendor/github.com/tendermint/tendermint/rpc/lib/client.unmarshalResponseBytes /Users/dean/go/src/github.com/cosmos/cosmos-sdk/vendor/github.com/tendermint/tendermint/rpc/lib/client/http_client.go:193 github.com/cosmos/cosmos-sdk/vendor/github.com/tendermint/tendermint/rpc/lib/client.(*JSONRPCClient ).Call /Users/dean/go/src/github.com/cosmos/cosmos-sdk/vendor/github.com/tendermint/tendermint/rpc/lib/client/http_client.go:124 github.com/cosmos/cosmos-sdk/vendor/github.com/tendermint/tendermint/rpc/client.(*HTTP ).BroadcastTxCommit /Users/dean/go/src/github.com/cosmos/cosmos-sdk/vendor/github.com/tendermint/tendermint/rpc/client/httpclient.go:88…

Excerpt (1122 of 4797 characters). Read the whole post on the forum ↗

KA
katernoir
Mar 2019 1
azulmarino:

ERROR: Response error: RPC error -32603 - Internal error: Timed out waiting for tx to be included in a block

Hey azulmarino,

this error usually occurs because the cli is waiting for your transaction to be included into a block. However, like in this case, it can take a while and the cli times out before it gets the confirmation. This just means that the transaction did not get included into a block before the cli “moved on”. The transaction will still be broadcasted throughout the network until it gets included into a block.

You could add the flag --async to make the injection of the transaction asychronous. You will then get a transaction hash that you can track via one of the networks great block explorers like mintscan or stargazer :slight_smile:

← Back to Discussions