Skip to content

Commit a5bac4e

Browse files
authored
Merge branch 'main' into marko/key_rotation
2 parents 6686e6a + 8904387 commit a5bac4e

21 files changed

Lines changed: 91 additions & 602 deletions

File tree

apps/evm/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/evstack/ev-node/apps/evm
22

3-
go 1.25.7
3+
go 1.25.8
44

55
replace (
66
github.com/evstack/ev-node => ../../

apps/grpc/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/evstack/ev-node/apps/grpc
22

3-
go 1.25.7
3+
go 1.25.8
44

55
replace (
66
github.com/evstack/ev-node => ../../

apps/testapp/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/evstack/ev-node/apps/testapp
22

3-
go 1.25.7
3+
go 1.25.8
44

55
replace (
66
github.com/evstack/ev-node => ../../.

core/execution/execution.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ type Executor interface {
9797
//
9898
// The function marks transaction with a filter status. The sequencer knows how to proceed with it:
9999
// - Transactions passing all filters constraints and that can be included (FilterOK)
100-
// - Invalid/unparseable force-included transactions (gibberish) (FilterRemove)
100+
// - Invalid/unparsable force-included transactions (gibberish) (FilterRemove)
101101
// - Any transactions that would exceed the cumulative gas limit (FilterPostpone)
102102
//
103103
// For non-gas-based execution layers (maxGas=0) should not filter by gas.
@@ -107,7 +107,7 @@ type Executor interface {
107107
// - txs: All transactions (force-included + mempool)
108108
// - maxBytes: Maximum cumulative size allowed (0 means no size limit)
109109
// - maxGas: Maximum cumulative gas allowed (0 means no gas limit)
110-
// - hasForceIncludedTransaction: Boolean wether force included txs are present
110+
// - hasForceIncludedTransaction: Boolean whether force included txs are present
111111
//
112112
// Returns:
113113
// - result: The filter status of all txs. The len(txs) == len(result).

execution/evm/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/evstack/ev-node/execution/evm
22

3-
go 1.25.7
3+
go 1.25.8
44

55
replace (
66
github.com/evstack/ev-node => ../../

execution/evm/test/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/evstack/ev-node/execution/evm/test
22

3-
go 1.25.7
3+
go 1.25.8
44

55
require (
6-
github.com/celestiaorg/tastora v0.19.0
6+
github.com/celestiaorg/tastora v0.20.0
77
github.com/ethereum/go-ethereum v1.17.2
88
github.com/evstack/ev-node/execution/evm v0.0.0-00010101000000-000000000000
99
github.com/golang-jwt/jwt/v5 v5.3.1
@@ -116,7 +116,7 @@ require (
116116
github.com/inconshreveable/mousetrap v1.1.0 // indirect
117117
github.com/ipfs/go-cid v0.6.0 // indirect
118118
github.com/jmhodges/levigo v1.0.0 // indirect
119-
github.com/klauspost/compress v1.18.0 // indirect
119+
github.com/klauspost/compress v1.18.5 // indirect
120120
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
121121
github.com/kr/pretty v0.3.1 // indirect
122122
github.com/kr/text v0.2.0 // indirect

execution/evm/test/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ github.com/celestiaorg/go-header v0.8.5 h1:MkzlioiSeybKVNDa0805fS3mS3NG8ub93Gs2x
128128
github.com/celestiaorg/go-header v0.8.5/go.mod h1:DKl6pcKCJ0ehGUgDmfxBNz6Lv0Ky4E1Oyrcx96eQm/4=
129129
github.com/celestiaorg/go-square/v3 v3.0.2 h1:eSQOgNII8inK9IhiBZ+6GADQeWbRq4HYY72BOgcduA4=
130130
github.com/celestiaorg/go-square/v3 v3.0.2/go.mod h1:oFReMLsSDMRs82ICFEeFQFCqNvwdsbIM1BzCcb0f7dM=
131-
github.com/celestiaorg/tastora v0.19.0 h1:m5MiDxYqlEdeY2i+vIpPZzjn5iA7U0JUM1PxE7Vs/UA=
132-
github.com/celestiaorg/tastora v0.19.0/go.mod h1:uhEz7v8YJmJuVgsJaCe0M0Q/HJiQAQNMu3w/OtmFIQY=
131+
github.com/celestiaorg/tastora v0.20.0 h1:J5ytjPfvH5JJjGJNpKRCTjVH4Bu9z29HGHkqbt2El0M=
132+
github.com/celestiaorg/tastora v0.20.0/go.mod h1:kCxob6KWSGYGPwbgKdphi3mjwKVI6iMZQXbBMYYMo3w=
133133
github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4=
134134
github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8=
135135
github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE=
@@ -470,8 +470,8 @@ github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7V
470470
github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=
471471
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
472472
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
473-
github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo=
474-
github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ=
473+
github.com/klauspost/compress v1.18.5 h1:/h1gH5Ce+VWNLSWqPzOVn6XBO+vJbCNGvjoaGBFW2IE=
474+
github.com/klauspost/compress v1.18.5/go.mod h1:cwPg85FWrGar70rWktvGQj8/hthj3wpl0PGDogxkrSQ=
475475
github.com/klauspost/cpuid/v2 v2.3.0 h1:S4CRMLnYUhGeDFDqkGriYKdfoFlDnMtqTiI/sFzhA9Y=
476476
github.com/klauspost/cpuid/v2 v2.3.0/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
477477
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/evstack/ev-node
22

3-
go 1.25.7
3+
go 1.25.8
44

55
retract v0.12.0 // Published by accident
66

pkg/raft/node.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ func (n *Node) Start(_ context.Context) error {
153153
return nil
154154
}
155155

156-
n.logger.Info().Msg("Boostrap raft cluster")
156+
n.logger.Info().Msg("Bootstrap raft cluster")
157157
thisNode := raft.Server{ID: raft.ServerID(n.config.NodeID), Address: raft.ServerAddress(n.config.RaftAddr)}
158158
cfg := raft.Configuration{
159159
Servers: []raft.Server{

pkg/store/store_adapter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ func (a *StoreAdapter[H]) Tail(ctx context.Context) (H, error) {
434434
}
435435
}
436436

437-
// shoud never happen
437+
// should never happen
438438
return zero, header.ErrEmptyStore
439439
}
440440

0 commit comments

Comments
 (0)