Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-merkledag
Commits
285da113
Commit
285da113
authored
Jul 11, 2017
by
Jeromy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update go-multihash and bubble up changes
License: MIT Signed-off-by:
Jeromy
<
jeromyj@gmail.com
>
parent
913f45da
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
28 additions
and
28 deletions
+28
-28
coding.go
coding.go
+2
-2
merkledag.go
merkledag.go
+4
-4
merkledag_test.go
merkledag_test.go
+4
-4
node.go
node.go
+3
-3
node_test.go
node_test.go
+1
-1
raw.go
raw.go
+4
-4
traverse/traverse.go
traverse/traverse.go
+1
-1
traverse/traverse_test.go
traverse/traverse_test.go
+1
-1
utils/diff.go
utils/diff.go
+2
-2
utils/diffenum.go
utils/diffenum.go
+2
-2
utils/diffenum_test.go
utils/diffenum_test.go
+2
-2
utils/utils.go
utils/utils.go
+1
-1
utils/utils_test.go
utils/utils_test.go
+1
-1
No files found.
coding.go
View file @
285da113
...
...
@@ -6,8 +6,8 @@ import (
pb
"github.com/ipfs/go-ipfs/merkledag/pb"
node
"gx/ipfs/Qm
PAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv/go-ipld-format
"
cid
"gx/ipfs/Qm
a4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid
"
cid
"gx/ipfs/Qm
TprEaAA2A9bst5XH7exuyi5KzNMK3SEDNN8rBDnKWcUS/go-cid
"
node
"gx/ipfs/Qm
YNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6/go-ipld-format
"
)
// for now, we use a PBNode intermediate thing.
...
...
merkledag.go
View file @
285da113
...
...
@@ -9,11 +9,11 @@ import (
bserv
"github.com/ipfs/go-ipfs/blockservice"
offline
"github.com/ipfs/go-ipfs/exchange/offline"
blocks
"gx/ipfs/Qm
XxGS5QsUxpR3iqL5DjmsYPHR1Yz74siRQ4ChJqWFosMh
/go-block-format"
blocks
"gx/ipfs/Qm
VA4mafxbfH5aEvNz8fyoxC6J1xhAtw88B4GerPznSZBg
/go-block-format"
node
"gx/ipfs/Qm
PAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv/go-ipld-format
"
cid
"gx/ipfs/Qm
a4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid
"
ipldcbor
"gx/ipfs/Qm
cdid3XrCxcoNQUqZKiiKtM7JXxtyipU3izyRqwjFbVWw
/go-ipld-cbor"
cid
"gx/ipfs/Qm
TprEaAA2A9bst5XH7exuyi5KzNMK3SEDNN8rBDnKWcUS/go-cid
"
node
"gx/ipfs/Qm
YNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6/go-ipld-format
"
ipldcbor
"gx/ipfs/Qm
emYymP73eVdTUUMZEiSpiHeZQKNJdT5dP2iuHssZh1sR
/go-ipld-cbor"
)
var
ErrNotFound
=
fmt
.
Errorf
(
"merkledag: not found"
)
...
...
merkledag_test.go
View file @
285da113
...
...
@@ -22,11 +22,11 @@ import (
mdpb
"github.com/ipfs/go-ipfs/merkledag/pb"
dstest
"github.com/ipfs/go-ipfs/merkledag/test"
uio
"github.com/ipfs/go-ipfs/unixfs/io"
blocks
"gx/ipfs/Qm
XxGS5QsUxpR3iqL5DjmsYPHR1Yz74siRQ4ChJqWFosMh
/go-block-format"
blocks
"gx/ipfs/Qm
VA4mafxbfH5aEvNz8fyoxC6J1xhAtw88B4GerPznSZBg
/go-block-format"
node
"gx/ipfs/Qm
PAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv/go-ipld-format
"
u
"gx/ipfs/Qm
Wbjfz3u6HkAdPh34dgPchGbQjob6LXLhAeCGii2TX69n/go-ipfs-util
"
cid
"gx/ipfs/Qm
a4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid
"
u
"gx/ipfs/Qm
SU6eubNdhXjFBJBSksTp8kv8YRub8mGAPv8tVJHmL2EU/go-ipfs-util
"
cid
"gx/ipfs/Qm
TprEaAA2A9bst5XH7exuyi5KzNMK3SEDNN8rBDnKWcUS/go-cid
"
node
"gx/ipfs/Qm
YNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6/go-ipld-format
"
)
func
TestNode
(
t
*
testing
.
T
)
{
...
...
node.go
View file @
285da113
...
...
@@ -5,9 +5,9 @@ import (
"encoding/json"
"fmt"
node
"gx/ipfs/Qm
PAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv/go-ipld-format
"
mh
"gx/ipfs/Qm
VGtdTZdTFaLsaj2RwdVG8jcjNNcp1DE914DKZ2kHmXHw
/go-multihash"
cid
"gx/ipfs/Qm
a4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid
"
cid
"gx/ipfs/Qm
TprEaAA2A9bst5XH7exuyi5KzNMK3SEDNN8rBDnKWcUS/go-cid
"
mh
"gx/ipfs/Qm
U9a9NV9RdPNwZQDYd5uKsm6N6LJLSvLbywDDYFbaaC6P
/go-multihash"
node
"gx/ipfs/Qm
YNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6/go-ipld-format
"
)
var
ErrNotProtobuf
=
fmt
.
Errorf
(
"expected protobuf dag node"
)
...
...
node_test.go
View file @
285da113
...
...
@@ -8,7 +8,7 @@ import (
.
"github.com/ipfs/go-ipfs/merkledag"
mdtest
"github.com/ipfs/go-ipfs/merkledag/test"
node
"gx/ipfs/Qm
PAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv
/go-ipld-format"
node
"gx/ipfs/Qm
YNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6
/go-ipld-format"
)
func
TestRemoveLink
(
t
*
testing
.
T
)
{
...
...
raw.go
View file @
285da113
package
merkledag
import
(
"gx/ipfs/Qm
XxGS5QsUxpR3iqL5DjmsYPHR1Yz74siRQ4ChJqWFosMh
/go-block-format"
"gx/ipfs/Qm
VA4mafxbfH5aEvNz8fyoxC6J1xhAtw88B4GerPznSZBg
/go-block-format"
node
"gx/ipfs/Qm
PAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv/go-ipld-format
"
u
"gx/ipfs/Qm
Wbjfz3u6HkAdPh34dgPchGbQjob6LXLhAeCGii2TX69n/go-ipfs-util
"
cid
"gx/ipfs/Qm
a4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid
"
u
"gx/ipfs/Qm
SU6eubNdhXjFBJBSksTp8kv8YRub8mGAPv8tVJHmL2EU/go-ipfs-util
"
cid
"gx/ipfs/Qm
TprEaAA2A9bst5XH7exuyi5KzNMK3SEDNN8rBDnKWcUS/go-cid
"
node
"gx/ipfs/Qm
YNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6/go-ipld-format
"
)
type
RawNode
struct
{
...
...
traverse/traverse.go
View file @
285da113
...
...
@@ -5,7 +5,7 @@ import (
"context"
"errors"
node
"gx/ipfs/Qm
PAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv
/go-ipld-format"
node
"gx/ipfs/Qm
YNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6
/go-ipld-format"
)
// Order is an identifier for traversal algorithm orders
...
...
traverse/traverse_test.go
View file @
285da113
...
...
@@ -8,7 +8,7 @@ import (
mdag
"github.com/ipfs/go-ipfs/merkledag"
mdagtest
"github.com/ipfs/go-ipfs/merkledag/test"
node
"gx/ipfs/Qm
PAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv
/go-ipld-format"
node
"gx/ipfs/Qm
YNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6
/go-ipld-format"
)
func
TestDFSPreNoSkip
(
t
*
testing
.
T
)
{
...
...
utils/diff.go
View file @
285da113
...
...
@@ -7,8 +7,8 @@ import (
dag
"github.com/ipfs/go-ipfs/merkledag"
node
"gx/ipfs/Qm
PAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv/go-ipld-format
"
cid
"gx/ipfs/Qm
a4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid
"
cid
"gx/ipfs/Qm
TprEaAA2A9bst5XH7exuyi5KzNMK3SEDNN8rBDnKWcUS/go-cid
"
node
"gx/ipfs/Qm
YNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6/go-ipld-format
"
)
const
(
...
...
utils/diffenum.go
View file @
285da113
...
...
@@ -6,8 +6,8 @@ import (
mdag
"github.com/ipfs/go-ipfs/merkledag"
node
"gx/ipfs/Qm
PAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv/go-ipld-format
"
cid
"gx/ipfs/Qm
a4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid
"
cid
"gx/ipfs/Qm
TprEaAA2A9bst5XH7exuyi5KzNMK3SEDNN8rBDnKWcUS/go-cid
"
node
"gx/ipfs/Qm
YNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6/go-ipld-format
"
)
// DiffEnumerate fetches every object in the graph pointed to by 'to' that is
...
...
utils/diffenum_test.go
View file @
285da113
...
...
@@ -8,8 +8,8 @@ import (
dag
"github.com/ipfs/go-ipfs/merkledag"
mdtest
"github.com/ipfs/go-ipfs/merkledag/test"
node
"gx/ipfs/Qm
PAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv/go-ipld-format
"
cid
"gx/ipfs/Qm
a4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB/go-cid
"
cid
"gx/ipfs/Qm
TprEaAA2A9bst5XH7exuyi5KzNMK3SEDNN8rBDnKWcUS/go-cid
"
node
"gx/ipfs/Qm
YNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6/go-ipld-format
"
)
func
buildNode
(
name
string
,
desc
map
[
string
]
ndesc
,
out
map
[
string
]
node
.
Node
)
node
.
Node
{
...
...
utils/utils.go
View file @
285da113
...
...
@@ -10,9 +10,9 @@ import (
dag
"github.com/ipfs/go-ipfs/merkledag"
path
"github.com/ipfs/go-ipfs/path"
node
"gx/ipfs/QmPAKbSsgEX5B6fpmxa61jXYnoWzZr5sNafd3qgPiSH8Uv/go-ipld-format"
ds
"gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore"
syncds
"gx/ipfs/QmVSase1JP7cq9QkPT46oNwdp9pT6kBkG3oqS14y3QcZjG/go-datastore/sync"
node
"gx/ipfs/QmYNyRZJBUYPNrLszFmrBrPJbsBh2vMsefz5gnDpB5M1P6/go-ipld-format"
)
type
Editor
struct
{
...
...
utils/utils_test.go
View file @
285da113
...
...
@@ -8,7 +8,7 @@ import (
path
"github.com/ipfs/go-ipfs/path"
context
"context"
cid
"gx/ipfs/Qm
a4RJSuh7mMeJQYCqMbKzekn6EwBo7HEs5AQYjVRMQATB
/go-cid"
cid
"gx/ipfs/Qm
TprEaAA2A9bst5XH7exuyi5KzNMK3SEDNN8rBDnKWcUS
/go-cid"
)
func
TestAddLink
(
t
*
testing
.
T
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment