Skip to content
Open
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@
/.GOPATH
/bin
/vendor
# should be ignored, since it is autogenerated
Gopkg.lock

141 changes: 102 additions & 39 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

[[constraint]]
branch = "master"
name = "github.com/jsimonetti/berkeleydb"
name = "github.com/block360/berkeleydb"

[[constraint]]
name = "github.com/kevinburke/nacl"
Expand Down Expand Up @@ -58,4 +58,4 @@

[[constraint]]
name = "github.com/grpc-ecosystem/grpc-gateway"
version = "1.4.0"
version = "1.4.0"
2 changes: 1 addition & 1 deletion storage/berkleydb.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package storage

import (
"encoding/base64"
"github.com/jsimonetti/berkeleydb"
"github.com/block360/berkeleydb"
)

type berkleyDb struct {
Expand Down