Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion cmd/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/deso-protocol/backend/routes"
coreCmd "github.com/deso-protocol/core/cmd"
"github.com/deso-protocol/core/lib"
"github.com/dgraph-io/badger/v4"
"github.com/dgraph-io/badger/v3"
"github.com/golang/glog"
"github.com/kevinburke/twilio-go"
)
Expand Down
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require (
github.com/davecgh/go-spew v1.1.1
github.com/deso-protocol/core v0.0.0-00010101000000-000000000000
github.com/deso-protocol/go-deadlock v1.0.0
github.com/dgraph-io/badger/v4 v4.2.0
github.com/dgraph-io/badger/v3 v3.2103.5
github.com/fatih/structs v1.1.0
github.com/golang-jwt/jwt/v4 v4.1.0
github.com/golang/glog v1.0.0
Expand Down Expand Up @@ -47,6 +47,7 @@ require (
github.com/Microsoft/go-winio v0.4.16 // indirect
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
github.com/bwesterb/go-ristretto v1.2.0 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cloudflare/circl v1.1.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
Expand Down
40 changes: 24 additions & 16 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion routes/exchange_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
coreCmd "github.com/deso-protocol/core/cmd"
"github.com/deso-protocol/core/lib"

"github.com/dgraph-io/badger/v4"
"github.com/dgraph-io/badger/v3"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion routes/global_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/deso-protocol/core/lib"

"github.com/dgraph-io/badger/v4"
"github.com/dgraph-io/badger/v3"
"github.com/nyaruka/phonenumbers"
"github.com/pkg/errors"
)
Expand Down
2 changes: 1 addition & 1 deletion routes/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"github.com/tyler-smith/go-bip39"

"github.com/deso-protocol/core/lib"
"github.com/dgraph-io/badger/v4"
"github.com/dgraph-io/badger/v3"
"github.com/golang/glog"
"github.com/kevinburke/twilio-go"
muxtrace "gopkg.in/DataDog/dd-trace-go.v1/contrib/gorilla/mux"
Expand Down
2 changes: 1 addition & 1 deletion routes/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"strings"

"github.com/btcsuite/btcd/btcec"
"github.com/dgraph-io/badger/v4"
"github.com/dgraph-io/badger/v3"
"github.com/gorilla/mux"
"github.com/holiman/uint256"

Expand Down
2 changes: 1 addition & 1 deletion scripts/tools/clear_ancestral_records.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/deso-protocol/backend/scripts/tools/toolslib"
"github.com/deso-protocol/core/lib"
"github.com/dgraph-io/badger/v4"
"github.com/dgraph-io/badger/v3"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion scripts/tools/toolslib/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package toolslib

import (
"github.com/deso-protocol/core/lib"
"github.com/dgraph-io/badger/v4"
"github.com/dgraph-io/badger/v3"
"github.com/pkg/errors"
)

Expand Down