gx update go-log, sys, go-crypto
* go-log * sys * go-crypto License: MIT Signed-off-by: Steven Allen <steven@stebalien.com> This commit was moved from ipfs/interface-go-ipfs-core@0e613d93eacb5247a4ca23790a5fe82dde8917dc This commit was moved from ipfs/boxo@724c6143570accc8e163cc355b46eff0338f52e5
Steven Allen committed
Jun 8, 2018 at 22:01 UTC
557277dda8b6c276d95f9fcec7721c014c60b5ee
7 files changed
+8
-8
core/coreiface/coreapi.go
+1
-1
@@ -5,7 +5,7 @@ package iface
5
import (
6
"context"
7
8
- ipld "gx/ipfs/Qme5bWv7wtjUNGsK2BNGVUFPKiuxWrsqrtvYwCLRw8YFES/go-ipld-format"
8
+ ipld "gx/ipfs/QmWi2BYBL5gJ3CiAiQchg6rn1A8iBsrWy51EYxvHVjFvLb/go-ipld-format"
9
)
10
11
// CoreAPI defines an unified interface to IPFS for Go programs
core/coreiface/dag.go
+1
-1
@@ -6,7 +6,7 @@ import (
6
7
options "github.com/ipfs/go-ipfs/core/coreapi/interface/options"
8
9
- ipld "gx/ipfs/Qme5bWv7wtjUNGsK2BNGVUFPKiuxWrsqrtvYwCLRw8YFES/go-ipld-format"
9
+ ipld "gx/ipfs/QmWi2BYBL5gJ3CiAiQchg6rn1A8iBsrWy51EYxvHVjFvLb/go-ipld-format"
10
)
11
12
// DagAPI specifies the interface to IPLD
core/coreiface/object.go
+2
-2
@@ -6,8 +6,8 @@ import (
6
7
options "github.com/ipfs/go-ipfs/core/coreapi/interface/options"
8
9
- cid "gx/ipfs/QmcZfnkapfECQGcLZaf9B79NRg7cRa9EnZh4LSbkCzwNvY/go-cid"
10
- ipld "gx/ipfs/Qme5bWv7wtjUNGsK2BNGVUFPKiuxWrsqrtvYwCLRw8YFES/go-ipld-format"
9
+ ipld "gx/ipfs/QmWi2BYBL5gJ3CiAiQchg6rn1A8iBsrWy51EYxvHVjFvLb/go-ipld-format"
10
+ cid "gx/ipfs/QmapdYm1b22Frv3k17fqrBYTFRxwiaVJkB299Mfn33edeB/go-cid"
11
)
12
13
// ObjectStat provides information about dag nodes
core/coreiface/options/block.go
+1
-1
@@ -1,7 +1,7 @@
1
package options
2
3
import (
4
- "gx/ipfs/QmZyZDi491cCNTLfAhwcaDii2Kg4pwKRkhqQzURGDvY6ua/go-multihash"
4
+ "gx/ipfs/QmPnFwZ2JXKnXgMw8CdBPxn7FWh6LLdjUjxV1fKHuJnkr8/go-multihash"
5
)
6
7
type BlockPutSettings struct {
core/coreiface/options/dag.go
+1
-1
@@ -3,7 +3,7 @@ package options
3
import (
4
"math"
5
6
- cid "gx/ipfs/QmcZfnkapfECQGcLZaf9B79NRg7cRa9EnZh4LSbkCzwNvY/go-cid"
6
+ cid "gx/ipfs/QmapdYm1b22Frv3k17fqrBYTFRxwiaVJkB299Mfn33edeB/go-cid"
7
)
8
9
type DagPutSettings struct {
core/coreiface/path.go
+1
-1
@@ -1,7 +1,7 @@
1
package iface
2
3
import (
4
- cid "gx/ipfs/QmcZfnkapfECQGcLZaf9B79NRg7cRa9EnZh4LSbkCzwNvY/go-cid"
4
+ cid "gx/ipfs/QmapdYm1b22Frv3k17fqrBYTFRxwiaVJkB299Mfn33edeB/go-cid"
5
)
6
7
// Path is a generic wrapper for paths used in the API. A path can be resolved
core/coreiface/unixfs.go
+1
-1
@@ -4,7 +4,7 @@ import (
4
"context"
5
"io"
6
7
- ipld "gx/ipfs/Qme5bWv7wtjUNGsK2BNGVUFPKiuxWrsqrtvYwCLRw8YFES/go-ipld-format"
7
+ ipld "gx/ipfs/QmWi2BYBL5gJ3CiAiQchg6rn1A8iBsrWy51EYxvHVjFvLb/go-ipld-format"
8
)
9
10
// UnixfsAPI is the basic interface to immutable files in IPFS