Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump cometbft to v1.0.0-rc2 #22577

Merged
merged 32 commits into from
Nov 28, 2024
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
c643ec9
build(deps): bump cometbft to v1.0.0-rc2
julienrbrt Nov 20, 2024
a93799d
Merge branch 'main' into julien/bump-comet
tac0turtle Nov 22, 2024
b8833fa
Merge branch 'main' into julien/bump-comet
julienrbrt Nov 22, 2024
5c1bce4
bump cosmos-db to cosmos/cosmos-db#117
julienrbrt Nov 22, 2024
b140417
cl
julienrbrt Nov 22, 2024
a7ccb39
bump to tagged version
julienrbrt Nov 22, 2024
31b4abd
Merge branch 'main' into julien/bump-comet
julienrbrt Nov 25, 2024
5ae795f
Merge branch 'main' into julien/bump-comet
julienrbrt Nov 26, 2024
7734e45
handle unknown abci error code
julienrbrt Nov 26, 2024
f6d591f
updates
julienrbrt Nov 26, 2024
c21e0ed
bump
julienrbrt Nov 27, 2024
3cc9ab8
Merge branch 'main' into julien/bump-comet
julienrbrt Nov 27, 2024
e802335
fixes
julienrbrt Nov 27, 2024
93c753f
updates
julienrbrt Nov 27, 2024
396ea1a
updates
julienrbrt Nov 27, 2024
a027af4
fix
julienrbrt Nov 27, 2024
66f1b1c
updates
julienrbrt Nov 27, 2024
e4fdd00
updates
julienrbrt Nov 27, 2024
295fd9e
Merge branch 'main' into julien/bump-comet
julienrbrt Nov 27, 2024
73c2644
add test from #21913
julienrbrt Nov 27, 2024
cee77b5
updates
julienrbrt Nov 27, 2024
318856d
trim log
julienrbrt Nov 27, 2024
17f437c
trim
julienrbrt Nov 28, 2024
99f71d2
updates
julienrbrt Nov 28, 2024
215d5c1
updates
julienrbrt Nov 28, 2024
fe2a634
updates
julienrbrt Nov 28, 2024
6039e1b
updates
julienrbrt Nov 28, 2024
dfcac99
updates
julienrbrt Nov 28, 2024
f727eb8
updates
julienrbrt Nov 28, 2024
3fd6550
updates
julienrbrt Nov 28, 2024
18e10c9
updates
julienrbrt Nov 28, 2024
58916ef
updates
julienrbrt Nov 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
trim log
  • Loading branch information
julienrbrt committed Nov 27, 2024
commit 318856de5ca88aebd2a71041f38f10120021c0ea
6 changes: 6 additions & 0 deletions tests/systemtests/export_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"fmt"
"os"
"path/filepath"
"strings"
"testing"

"github.com/stretchr/testify/assert"
Expand Down Expand Up @@ -68,6 +69,11 @@ func TestExportCmd_WithHeight(t *testing.T) {

for _, tc := range testCases {
res := cli.RunCommandWithArgs(tc.args...)
// sometimes the output contains some logs, so we need to extract the json part
if i := strings.Index(res, "{"); i > 0 {
res = res[i:]
}

height := gjson.Get(res, "initial_height").Int()
if tc.expZeroHeight {
require.Equal(t, height, int64(0))
Expand Down
Loading