diff --git a/node/pkg/watchers/cosmwasm/watcher.go b/node/pkg/watchers/cosmwasm/watcher.go index 24678b4db..b4f952b7c 100644 --- a/node/pkg/watchers/cosmwasm/watcher.go +++ b/node/pkg/watchers/cosmwasm/watcher.go @@ -116,8 +116,8 @@ func NewWatcher( // Do not add a leading slash latestBlockURL := "blocks/latest" - // Injective does things slightly differently than terra - if chainID == vaa.ChainIDInjective { + // Terra2 and Injective do things slightly differently than terra classic + if chainID == vaa.ChainIDInjective || chainID == vaa.ChainIDTerra2 { latestBlockURL = "cosmos/base/tendermint/v1beta1/blocks/latest" }