Move the temporary packages to thirdparty

License: MIT
Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
This commit is contained in:
Jakub Sztandera 2018-03-01 23:31:12 +01:00
parent c30422d790
commit 578cb240d4
5 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ import (
"io"
exchange "github.com/ipfs/go-ipfs/exchange"
"github.com/ipfs/go-ipfs/removeme/verifcid"
"github.com/ipfs/go-ipfs/thirdparty/verifcid"
logging "gx/ipfs/QmRb5jh8z2E8hMGN2tkvs1yHynUanqnZ3UeKwgN1i9P1F8/go-log"
blockstore "gx/ipfs/QmTVDM4LCSUMFNQzbDLL9zQwp8usE6QHymFdh3h8vL9v6b/go-ipfs-blockstore"

View File

@ -15,7 +15,7 @@ import (
dag "github.com/ipfs/go-ipfs/merkledag"
resolver "github.com/ipfs/go-ipfs/path/resolver"
pin "github.com/ipfs/go-ipfs/pin"
"github.com/ipfs/go-ipfs/removeme/verifbs"
"github.com/ipfs/go-ipfs/thirdparty/verifbs"
repo "github.com/ipfs/go-ipfs/repo"
cfg "github.com/ipfs/go-ipfs/repo/config"
uio "github.com/ipfs/go-ipfs/unixfs/io"

View File

@ -1,7 +1,7 @@
package verifbs
import (
"github.com/ipfs/go-ipfs/removeme/verifcid"
"github.com/ipfs/go-ipfs/thirdparty/verifcid"
bstore "gx/ipfs/QmTVDM4LCSUMFNQzbDLL9zQwp8usE6QHymFdh3h8vL9v6b/go-ipfs-blockstore"
cid "gx/ipfs/QmcZfnkapfECQGcLZaf9B79NRg7cRa9EnZh4LSbkCzwNvY/go-cid"

View File

@ -8,7 +8,7 @@ import (
)
var ErrPossiblyInsecureHashFunction = fmt.Errorf("potentially insecure hash functions not allowed")
var ErrBelowMinimumHashLength = fmt.Errorf("hashes must be at least bytes long")
var ErrBelowMinimumHashLength = fmt.Errorf("hashes must be at %d least bytes long", minimumHashLength)
const minimumHashLength = 20