File tree Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ module github.com/nspcc-dev/neo-go
2
2
3
3
go 1.23
4
4
5
- replace go.etcd.io/bbolt v1.4.0 => github.com/nspcc-dev/bbolt v0.0.0-20250612101626-5df2544a4a22
6
-
7
5
require (
8
6
github.com/chzyer/readline v1.5.1
9
7
github.com/consensys/gnark v0.12.0
@@ -16,6 +14,7 @@ require (
16
14
github.com/holiman/uint256 v1.3.2
17
15
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
18
16
github.com/mr-tron/base58 v1.2.0
17
+ github.com/nspcc-dev/bbolt v0.0.0-20250911202005-807225ebb0c8
19
18
github.com/nspcc-dev/dbft v0.4.0
20
19
github.com/nspcc-dev/go-ordered-json v0.0.0-20250226190835-fb3f82b1f468
21
20
github.com/nspcc-dev/neo-go/pkg/interop v0.0.0-20250827092051-0d90ffc70f57
@@ -27,7 +26,6 @@ require (
27
26
github.com/syndtr/goleveldb v1.0.1-0.20210305035536-64b5b1c73954
28
27
github.com/twmb/murmur3 v1.1.8
29
28
github.com/urfave/cli/v2 v2.27.6
30
- go.etcd.io/bbolt v1.4.0
31
29
go.uber.org/zap v1.27.0
32
30
golang.org/x/crypto v0.33.0
33
31
golang.org/x/term v0.29.0
Original file line number Diff line number Diff line change @@ -148,8 +148,8 @@ github.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o=
148
148
github.com/mr-tron/base58 v1.2.0 /go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc =
149
149
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA =
150
150
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 /go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ =
151
- github.com/nspcc-dev/bbolt v0.0.0-20250612101626-5df2544a4a22 h1:M5Nmg1iCnbZngzIBDIlMr9vW+okFfcSMBvBlXG8r+14 =
152
- github.com/nspcc-dev/bbolt v0.0.0-20250612101626-5df2544a4a22 /go.mod h1:AsD+OCi/qPN1giOX1aiLAha3o1U8rAz65bvN4j0sRuk =
151
+ github.com/nspcc-dev/bbolt v0.0.0-20250911202005-807225ebb0c8 h1:lYMHisGPtL70vqCe/M+cU27HMZcV2PTYTaRmO7qxhMQ =
152
+ github.com/nspcc-dev/bbolt v0.0.0-20250911202005-807225ebb0c8 /go.mod h1:iYl+DCkSLXgVCeQWyC+kqS9V1fAQCA74JZtptwjNYpc =
153
153
github.com/nspcc-dev/dbft v0.4.0 h1:4/atD4GrrMEtrYBDiZPrPzdKZ6ws7PR/cg0M4DEdVeI =
154
154
github.com/nspcc-dev/dbft v0.4.0 /go.mod h1:msYlF5GIGwOZ9jUIHttBAAtiqJ29jzV8PPKKv1avXAI =
155
155
github.com/nspcc-dev/go-ordered-json v0.0.0-20250226190835-fb3f82b1f468 h1:qOd9/UANpXOME/3RTSa/dJoSzdVwYOkD32XQah0xj1E =
Original file line number Diff line number Diff line change 7
7
"os"
8
8
"time"
9
9
10
+ "github.com/nspcc-dev/bbolt"
10
11
"github.com/nspcc-dev/neo-go/pkg/core/storage/dbconfig"
11
12
"github.com/nspcc-dev/neo-go/pkg/io"
12
- "go.etcd.io/bbolt"
13
13
)
14
14
15
15
// Bucket represents bucket used in boltdb to store all the data.
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ import (
6
6
"strings"
7
7
"testing"
8
8
9
+ "github.com/nspcc-dev/bbolt"
10
+ "github.com/nspcc-dev/bbolt/errors"
9
11
"github.com/nspcc-dev/neo-go/pkg/core/storage/dbconfig"
10
12
"github.com/stretchr/testify/require"
11
- "go.etcd.io/bbolt"
12
- "go.etcd.io/bbolt/errors"
13
13
)
14
14
15
15
func newBoltStoreForTesting (t testing.TB ) Store {
You can’t perform that action at this time.
0 commit comments