Skip to content

Commit

Permalink
fix: remove occurrence of Tendermint string (#676)
Browse files Browse the repository at this point in the history
  • Loading branch information
zale144 authored Apr 15, 2024
1 parent eb08e30 commit 01ff0a4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions rpc/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ import (

sdkerrors "cosmossdk.io/errors"

abciconv "github.com/dymensionxyz/dymint/conv/abci"
"github.com/dymensionxyz/dymint/mempool"
"github.com/dymensionxyz/dymint/node"
abci "github.com/tendermint/tendermint/abci/types"
"github.com/tendermint/tendermint/config"
tmbytes "github.com/tendermint/tendermint/libs/bytes"
Expand All @@ -28,6 +25,10 @@ import (
ctypes "github.com/tendermint/tendermint/rpc/core/types"
"github.com/tendermint/tendermint/types"
tm_version "github.com/tendermint/tendermint/version"

abciconv "github.com/dymensionxyz/dymint/conv/abci"
"github.com/dymensionxyz/dymint/mempool"
"github.com/dymensionxyz/dymint/node"
)

const (
Expand Down Expand Up @@ -165,7 +166,7 @@ func (c *Client) BroadcastTxCommit(ctx context.Context, tx types.Tx) (*ctypes.Re
case <-deliverTxSub.Cancelled():
var reason string
if deliverTxSub.Err() == nil {
reason = "Tendermint exited"
reason = "Dymint exited"
} else {
reason = deliverTxSub.Err().Error()
}
Expand Down

0 comments on commit 01ff0a4

Please sign in to comment.