Skip to content
Merged
2 changes: 0 additions & 2 deletions app/params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,6 @@ func setValidatorTypeTendermintConfig(config *tmcfg.Config) {
// setFullnodeTypeTendermintConfig sets common Tendermint config for fullnode-like nodes
func setFullnodeTypeTendermintConfig(config *tmcfg.Config) {
config.TxIndex.Indexer = []string{"kv"} // Full nodes need tx indexing for queries
config.RPC.ListenAddress = "tcp://0.0.0.0:26657"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @blindchaser
These lines were added by #2903 Can you please explain why they are removed? or was it an unresolved conflict issue?

Copy link
Contributor

@mojtaba-esk mojtaba-esk Feb 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR is a large one and such accident could happen. A new PR is opened to put them back #2913 would you please have a look and see if it is alright? thanks

config.P2P.ListenAddress = "tcp://0.0.0.0:26656"
}

// SetTendermintConfigByMode sets Tendermint config values based on node mode
Expand Down
7 changes: 0 additions & 7 deletions cmd/seid/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (
"math/rand"
"os"
"path/filepath"
"strings"
"time"

"github.com/cosmos/cosmos-sdk/baseapp"
Expand Down Expand Up @@ -96,12 +95,6 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) {
return err
}

// Skip creating config.toml/app.toml when running "init"; init creates them itself.
// Otherwise the PreRun would create them in the init home, and init would then error
if strings.HasPrefix(cmd.Use, "init") {
return nil
}

customAppTemplate, customAppConfig := initAppConfig()

return server.InterceptConfigsPreRunHandler(cmd, customAppTemplate, customAppConfig)
Expand Down
8 changes: 8 additions & 0 deletions evmrpc/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -934,6 +934,14 @@ func (f *LogFetcher) tryFilterLogsRange(_ context.Context, fromBlock, toBlock ui
return nil, err
}

// Sort logs by block number and index (should already be sorted from DuckDB, but ensure consistency)
sort.Slice(logs, func(i, j int) bool {
if logs[i].BlockNumber != logs[j].BlockNumber {
return logs[i].BlockNumber < logs[j].BlockNumber
}
return logs[i].Index < logs[j].Index
})

return logs, nil
}

Expand Down
41 changes: 15 additions & 26 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ require (
github.com/creachadair/atomicfile v0.4.0
github.com/creachadair/taskgroup v0.3.2
github.com/creachadair/tomledit v0.0.29
github.com/duckdb/duckdb-go/v2 v2.5.3
github.com/dvsekhvalnov/jose2go v1.5.0
github.com/ethereum/evmc/v12 v12.1.0
github.com/ethereum/go-ethereum v1.16.8
Expand Down Expand Up @@ -53,7 +52,6 @@ require (
github.com/mroth/weightedrand v1.0.0
github.com/oasisprotocol/curve25519-voi v0.0.0-20210609091139-0a56a4bca00b
github.com/ory/dockertest v3.3.5+incompatible
github.com/parquet-go/parquet-go v0.25.1
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.23.2
Expand All @@ -75,7 +73,7 @@ require (
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d
github.com/tendermint/tm-db v0.6.8-0.20220519162814-e24b96538a12
github.com/tidwall/btree v1.6.0
github.com/tidwall/gjson v1.14.2
github.com/tidwall/gjson v1.10.2
github.com/tidwall/wal v1.2.1
github.com/zbiljic/go-filelock v0.0.0-20170914061330-1dbf7103ab7d
github.com/zeebo/blake3 v0.2.4
Expand Down Expand Up @@ -112,13 +110,14 @@ require (
require (
4d63.com/gochecknoglobals v0.1.0 // indirect
cosmossdk.io/errors v1.0.0 // indirect
dario.cat/mergo v1.0.2 // indirect
filippo.io/edwards25519 v1.0.0-rc.1 // indirect
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
github.com/99designs/keyring v1.2.1 // indirect
github.com/Abirdcfly/dupword v0.0.7 // indirect
github.com/Antonboom/errname v0.1.7 // indirect
github.com/Antonboom/nilnil v0.1.1 // indirect
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
github.com/DataDog/zstd v1.5.7 // indirect
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect
github.com/GaijinEntertainment/go-exhaustruct/v2 v2.3.0 // indirect
Expand All @@ -131,8 +130,6 @@ require (
github.com/VictoriaMetrics/fastcache v1.12.2 // indirect
github.com/alexkohler/prealloc v1.0.0 // indirect
github.com/alingse/asasalint v0.0.11 // indirect
github.com/andybalholm/brotli v1.2.0 // indirect
github.com/apache/arrow-go/v18 v18.4.1 // indirect
github.com/ashanbrown/forbidigo v1.3.0 // indirect
github.com/ashanbrown/makezero v1.1.1 // indirect
github.com/beorn7/perks v1.0.1 // indirect
Expand Down Expand Up @@ -177,17 +174,10 @@ require (
github.com/dgraph-io/badger/v3 v3.2103.2 // indirect
github.com/dgraph-io/ristretto v0.2.0 // indirect
github.com/dlclark/regexp2 v1.7.0 // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/docker/cli v29.2.0+incompatible // indirect
github.com/docker/go-connections v0.6.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/dop251/goja v0.0.0-20230605162241-28ee0ee714f3 // indirect
github.com/duckdb/duckdb-go-bindings v0.1.23 // indirect
github.com/duckdb/duckdb-go-bindings/darwin-amd64 v0.1.23 // indirect
github.com/duckdb/duckdb-go-bindings/darwin-arm64 v0.1.23 // indirect
github.com/duckdb/duckdb-go-bindings/linux-amd64 v0.1.23 // indirect
github.com/duckdb/duckdb-go-bindings/linux-arm64 v0.1.23 // indirect
github.com/duckdb/duckdb-go-bindings/windows-amd64 v0.1.23 // indirect
github.com/duckdb/duckdb-go/arrowmapping v0.0.26 // indirect
github.com/duckdb/duckdb-go/mapping v0.0.25 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/esimonov/ifshort v1.0.4 // indirect
github.com/ethereum/c-kzg-4844 v1.0.0 // indirect
Expand All @@ -214,10 +204,9 @@ require (
github.com/go-toolsmith/astp v1.0.0 // indirect
github.com/go-toolsmith/strparse v1.0.0 // indirect
github.com/go-toolsmith/typep v1.0.2 // indirect
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
github.com/go-viper/mapstructure/v2 v2.3.0 // indirect
github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/goccy/go-json v0.10.5 // indirect
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
github.com/gofrs/flock v0.13.0 // indirect
github.com/gogo/gateway v1.1.0 // indirect
Expand All @@ -232,7 +221,7 @@ require (
github.com/golangci/misspell v0.3.5 // indirect
github.com/golangci/revgrep v0.0.0-20220804021717-745bb2f7c2e6 // indirect
github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 // indirect
github.com/google/flatbuffers v25.2.10+incompatible // indirect
github.com/google/flatbuffers v23.5.26+incompatible // indirect
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
github.com/gordonklaus/ineffassign v0.0.0-20210914165742-4cc7213b9bc8 // indirect
github.com/gorilla/handlers v1.5.1 // indirect
Expand Down Expand Up @@ -267,7 +256,7 @@ require (
github.com/kisielk/gotool v1.0.0 // indirect
github.com/kkHAIKE/contextcheck v1.1.3 // indirect
github.com/klauspost/compress v1.18.3 // indirect
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/kulti/thelper v0.6.3 // indirect
Expand All @@ -283,12 +272,15 @@ require (
github.com/matoous/godox v0.0.0-20210227103229-6504466cf951 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mbilski/exhaustivestruct v1.2.0 // indirect
github.com/mgechev/revive v1.2.4 // indirect
github.com/minio/minlz v1.0.1-0.20250507153514-87eb42fe8882 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/pointerstructure v1.2.0 // indirect
github.com/moby/moby/api v1.53.0 // indirect
github.com/moby/moby/client v0.2.2 // indirect
github.com/moby/term v0.5.2 // indirect
github.com/moricho/tparallel v0.2.1 // indirect
github.com/mtibben/percent v0.2.1 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
Expand All @@ -298,12 +290,11 @@ require (
github.com/nishanths/predeclared v0.2.2 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/opencontainers/image-spec v1.1.1 // indirect
github.com/opencontainers/runc v1.1.14 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08 // indirect
github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d // indirect
github.com/pierrec/lz4/v4 v4.1.22 // indirect
github.com/pion/dtls/v2 v2.2.7 // indirect
github.com/pion/logging v0.2.2 // indirect
github.com/pion/stun/v2 v2.0.0 // indirect
Expand Down Expand Up @@ -360,25 +351,23 @@ require (
github.com/yagipy/maintidx v1.0.0 // indirect
github.com/yeya24/promlinter v0.2.0 // indirect
github.com/yusufpapurcu/wmi v1.2.4 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
github.com/zondax/golem v0.27.0 // indirect
github.com/zondax/hid v0.9.2 // indirect
github.com/zondax/ledger-go v1.0.1 // indirect
gitlab.com/bosi/decorder v0.2.3 // indirect
go.etcd.io/bbolt v1.3.7 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.64.0 // indirect
go.opentelemetry.io/otel/exporters/jaeger v1.9.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
go.yaml.in/yaml/v2 v2.4.3 // indirect
golang.org/x/exp/typeparams v0.0.0-20231108232855-2478ac86f678 // indirect
golang.org/x/mod v0.32.0 // indirect
golang.org/x/telemetry v0.0.0-20260109210033-bd525da824e2 // indirect
golang.org/x/term v0.39.0 // indirect
golang.org/x/text v0.33.0 // indirect
golang.org/x/tools v0.41.0 // indirect
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
google.golang.org/genproto v0.0.0-20250603155806-513f23925822 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
Expand Down
Loading
Loading