coreapi: update block after update
License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com> This commit was moved from ipfs/interface-go-ipfs-core@bf7867a20c4aed75aead015b6c720b16645e9626 This commit was moved from ipfs/boxo@72b62f5f64893169686ccb5569f41545c3ba8c67
Łukasz Magiera committed
Jan 31, 2018 at 00:34 UTC
b47c82f3c79aa8bcfae27c7f022f62e5362a0b56
2 files changed
+5
-2
core/coreiface/interface.go
+4
@@ -62,12 +62,16 @@ type BlockStat interface {
62
type CoreAPI interface {
63
// Unixfs returns an implementation of Unixfs API.
64
Unixfs() UnixfsAPI
65
+
66
// Block returns an implementation of Block API.
67
Block() BlockAPI
68
+
69
// Dag returns an implementation of Dag API.
70
Dag() DagAPI
71
+
72
// Name returns an implementation of Name API.
73
Name() NameAPI
74
+
75
// Key returns an implementation of Key API.
76
Key() KeyAPI
77
core/coreiface/options/block.go
+1
-2
@@ -1,8 +1,7 @@
1
package options
2
3
import (
4
- //cid "gx/ipfs/QmeSrf6pzut73u6zLQkRFQ3ygt3k6XFT2kjdYP8Tnkwwyg/go-cid"
5
- "gx/ipfs/QmYeKnKpubCMRiq3PGZcTREErthbb5Q9cXsCoSkD9bjEBd/go-multihash"
4
+ "gx/ipfs/QmZyZDi491cCNTLfAhwcaDii2Kg4pwKRkhqQzURGDvY6ua/go-multihash"
5
)
6
7
type BlockPutSettings struct {