diff --git a/Gopkg.lock b/Gopkg.lock index ba0f836..cb4572c 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -1,14 +1,6 @@ # This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. -[[projects]] - digest = "1:b73f5e117bc7c6e8fc47128f20db48a873324ad5cfeeebfc505e85c58682b5e4" - name = "github.com/ZondaX/hid" - packages = ["."] - pruneopts = "T" - revision = "302fd402163c34626286195dfa9adac758334acc" - version = "v0.9.0" - [[projects]] digest = "1:ffe9824d294da03b391f44e1ae8281281b4afc1bdaa9588c9097785e3af10cec" name = "github.com/davecgh/go-spew" @@ -41,13 +33,21 @@ revision = "ffdc059bfe9ce6a4e144ba849dbedead332c6053" version = "v1.3.0" +[[projects]] + digest = "1:b73f5e117bc7c6e8fc47128f20db48a873324ad5cfeeebfc505e85c58682b5e4" + name = "github.com/zondax/hid" + packages = ["."] + pruneopts = "T" + revision = "302fd402163c34626286195dfa9adac758334acc" + version = "v0.9.0" + [solve-meta] analyzer-name = "dep" analyzer-version = 1 input-imports = [ - "github.com/ZondaX/hid", "github.com/pkg/errors", "github.com/stretchr/testify/assert", + "github.com/zondax/hid", ] solver-name = "gps-cdcl" solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml index 2bea123..c6c23d4 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -1,5 +1,5 @@ [[constraint]] - name = "github.com/ZondaX/hid" + name = "github.com/zondax/hid" version = "0.9.0" [[constraint]] @@ -14,5 +14,5 @@ go-tests = true unused-packages = true [[prune.project]] - name = "github.com/ZondaX/hid" + name = "github.com/zondax/hid" unused-packages = false diff --git a/ledger.go b/ledger.go index e68aa4a..0642993 100644 --- a/ledger.go +++ b/ledger.go @@ -19,7 +19,7 @@ package ledger_go import ( "errors" "fmt" - "github.com/ZondaX/hid" + "github.com/zondax/hid" "sync" ) diff --git a/ledger_test.go b/ledger_test.go index 88deca6..298d7b8 100644 --- a/ledger_test.go +++ b/ledger_test.go @@ -21,7 +21,7 @@ package ledger_go import ( "encoding/hex" "fmt" - "github.com/ZondaX/hid" + "github.com/zondax/hid" "github.com/stretchr/testify/assert" "testing" )