From 98f9b72e4ff8b134c522e05d55831944573a9a26 Mon Sep 17 00:00:00 2001 From: "Jeff R. Allen" Date: Thu, 10 Sep 2015 21:48:20 +0600 Subject: [PATCH] Change go-uuid to use the current supported repository. --- Godeps/Godeps.json | 6 +++--- crypto/crypto.go | 2 +- crypto/key.go | 2 +- crypto/key_store_passphrase.go | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index c939ae6707..c13f4b4e43 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -6,9 +6,9 @@ ], "Deps": [ { - "ImportPath": "code.google.com/p/go-uuid/uuid", - "Comment": "null-12", - "Rev": "7dda39b2e7d5e265014674c5af696ba4186679e9" + "ImportPath": "github.com/pborman/uuid", + "Comment": "none", + "Rev": "cccd189d45f7ac3368a0d127efb7f4d08ae0b655" }, { "ImportPath": "github.com/codegangsta/cli", diff --git a/crypto/crypto.go b/crypto/crypto.go index a474d6f13f..b3a8d730b4 100644 --- a/crypto/crypto.go +++ b/crypto/crypto.go @@ -33,12 +33,12 @@ import ( "encoding/json" "errors" - "code.google.com/p/go-uuid/uuid" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto/ecies" "github.com/ethereum/go-ethereum/crypto/secp256k1" "github.com/ethereum/go-ethereum/crypto/sha3" "github.com/ethereum/go-ethereum/rlp" + "github.com/pborman/uuid" "golang.org/x/crypto/pbkdf2" "golang.org/x/crypto/ripemd160" ) diff --git a/crypto/key.go b/crypto/key.go index d80b997598..35139b67f2 100644 --- a/crypto/key.go +++ b/crypto/key.go @@ -23,8 +23,8 @@ import ( "encoding/json" "io" - "code.google.com/p/go-uuid/uuid" "github.com/ethereum/go-ethereum/common" + "github.com/pborman/uuid" ) const ( diff --git a/crypto/key_store_passphrase.go b/crypto/key_store_passphrase.go index f21af8dd9f..c7ee009872 100644 --- a/crypto/key_store_passphrase.go +++ b/crypto/key_store_passphrase.go @@ -36,9 +36,9 @@ import ( "io" "reflect" - "code.google.com/p/go-uuid/uuid" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto/randentropy" + "github.com/pborman/uuid" "golang.org/x/crypto/pbkdf2" "golang.org/x/crypto/scrypt" )