Skip to content

Commit ec685e0

Browse files
author
Jon S.
authored
Merge branch 'sei-protocol:main' into fix/evm-interop-ci
2 parents af6fd3b + cfd70df commit ec685e0

File tree

556 files changed

+57
-113644
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

556 files changed

+57
-113644
lines changed

.github/workflows/go-test.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@ jobs:
4040
- uses: actions/setup-go@v6
4141
with:
4242
go-version: '1.24'
43+
- name: Remove unnecessary tooling
44+
run: |
45+
# Remove unrelated tooling to open up more space. Without doing
46+
# this ~80% of the available 15GiB space is already occupied.
47+
sudo rm -rf \
48+
/usr/share/dotnet \
49+
/usr/local/lib/android \
50+
/opt/ghc /opt/hostedtoolcache/CodeQL
51+
sudo docker image prune --all --force
4352
- name: Go test with race detector
4453
working-directory: '${{ matrix.modules.path }}'
4554
run: go test -race -tags='${{ matrix.modules.tags }}' -timeout='${{env.GO_TEST_TIMEOUT}}' -covermode=atomic -coverprofile=coverage.out ./...
@@ -51,4 +60,4 @@ jobs:
5160
disable_search: 'true'
5261
name: '${{ matrix.modules.name }}-coverage'
5362
files: ${{ matrix.modules.path }}/coverage.out
54-
flags: ${{ matrix.modules.name }}
63+
flags: ${{ matrix.modules.name }}

.gitpod.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.
File renamed without changes.

app/abci.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,3 @@ func (app *App) Commit(ctx context.Context) (res *abci.ResponseCommit, err error
8888
defer span.End()
8989
return app.BaseApp.Commit(ctx)
9090
}
91-
92-
func (app *App) LoadLatest(ctx context.Context, req *abci.RequestLoadLatest) (*abci.ResponseLoadLatest, error) {
93-
err := app.ReloadDB()
94-
if err != nil {
95-
return nil, err
96-
}
97-
app.mounter()
98-
return app.BaseApp.LoadLatest(ctx, req)
99-
}

app/app.go

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -925,12 +925,8 @@ func New(
925925
return nil
926926
}
927927

928-
if app.LastCommitID().Version > 0 || app.TmConfig == nil || !app.TmConfig.DBSync.Enable {
929-
if err := loadVersionHandler(); err != nil {
930-
panic(err)
931-
}
932-
} else {
933-
app.SetLoadVersionHandler(loadVersionHandler)
928+
if err := loadVersionHandler(); err != nil {
929+
panic(err)
934930
}
935931

936932
app.ScopedIBCKeeper = scopedIBCKeeper

codecov.yml

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ coverage:
77
target: auto
88
threshold: 0.1% # allow this much decrease on project
99
sei-chain:
10-
target: 60%
10+
target: 40%
1111
paths:
1212
- "!sei-cosmos/**"
1313
- "!sei-db/**"
@@ -23,7 +23,7 @@ coverage:
2323
flags:
2424
- sei-cosmos
2525
sei-tendermint:
26-
target: 50%
26+
target: 40%
2727
paths:
2828
- "sei-tendermint/**"
2929
flags:
@@ -51,32 +51,27 @@ comment:
5151

5252
ignore:
5353
# Common documentation and metadata
54-
- "**/docs/**"
54+
- "**/docs/**/*"
5555
- "**/*.md"
5656
- "**/*.rst"
57-
- "**/example/**"
58-
- "**/benchmark/**"
57+
- "**/example/**/*"
58+
- "**/benchmark/**/*"
5959

6060
# Generated protobuf files
61-
- "**/*pb*.go"
6261
- "**/*.pb.go"
6362
- "**/*.pb.gw.go"
6463

6564
# Tests and test utilities
66-
- "**/tests/*"
67-
- "**/tests/**/*"
6865
- "**/integration_test/**/*"
69-
- "**/testutil/**"
66+
- "**/testutil/**/*"
7067
- "**/x/**/test_common.go"
71-
- "**/x/**/testdata/**"
68+
- "**/x/**/testdata/**/*"
7269

7370
# Scripts, tooling, and contribution helpers
74-
- "**/scripts/**"
75-
- "**/contrib/**"
76-
- "**/docker/**"
77-
- "**/cmd/**"
71+
- "**/scripts/**/*"
72+
- "**/contrib/**/*"
73+
- "**/docker/**/*"
7874

7975
# Project-specific exclusions
80-
- "**/precompiles/*/legacy/**"
81-
- "**/cli/**"
82-
- "**/types/*.pb.go"
76+
- "precompiles/**/legacy/**/*"
77+
- "**/cli/**/*"

oracle/.env

Lines changed: 0 additions & 19 deletions
This file was deleted.

oracle/.eslintrc.js

Lines changed: 0 additions & 15 deletions
This file was deleted.

oracle/deploy.yaml

Lines changed: 0 additions & 24 deletions
This file was deleted.

oracle/main.js

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)