Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mega update #4610

Merged
merged 25 commits into from
Jan 30, 2018
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
fe8846f
gx: mass update
Stebalien Jan 24, 2018
d82b527
switch to fast base58 library
Stebalien Jan 25, 2018
8899e98
fix tests that use invalid peer IDs
Stebalien Jan 25, 2018
281d5ea
Update ipns validator
dirkmc Jan 20, 2018
b90d7bd
Remove unneccesary split in IpnsValidator
dirkmc Jan 21, 2018
f6d507b
go fmt
dirkmc Jan 21, 2018
fdb0046
Fix ipns validator key parsing
dirkmc Jan 23, 2018
49569a6
gx update badger ds (fix internal deps issue)
Stebalien Jan 25, 2018
730754d
dagmodifier: remove useless offset update
Stebalien Jan 25, 2018
d154b4a
merkledag: switch to new dag interface
Stebalien Jan 25, 2018
0d12a97
namesys: remove unecessary peerID cast
Stebalien Jan 25, 2018
699b2c4
make code-climate happier
Stebalien Jan 25, 2018
1159abd
cmds: can't call SetError after SetOutput
Stebalien Jan 26, 2018
97cb6a0
fix dht tests
Stebalien Jan 26, 2018
d73bf86
note issue for failing dht test cases
Stebalien Jan 26, 2018
e049228
fix namesys pubsub sharness tests
Stebalien Jan 26, 2018
118ecb2
remove new DHT record author check
Stebalien Jan 26, 2018
d0998a9
make base64 decoding cross-platform
Stebalien Jan 27, 2018
5acbecc
update go-lib2p-loggables
Stebalien Jan 28, 2018
faae63f
handle error from changed NewFloodSub method
Stebalien Jan 28, 2018
1054826
switch base64 decoder based on OS
Stebalien Jan 28, 2018
f1aba97
fix error in test case
Stebalien Jan 29, 2018
f9d935b
rename import of go-ipld-format from node/format to ipld
Stebalien Jan 29, 2018
87c6914
update go-ds-badger
Stebalien Jan 29, 2018
2379aa0
update comment to note that we're punting on this
Stebalien Jan 29, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion unixfs/mod/dagmodifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ func (dm *DagModifier) modifyDag(n node.Node, offset uint64, data io.Reader) (*c
return nil, false, err
}

offset += bs
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@whyrusleeping go vet complained. I believe this is the correct fix here but I just wanted to check. Not really related to this PR, just a drive-by fix.

node.Links()[i].Cid = k

// Recache serialized node
Expand Down