Skip to content
This repository has been archived by the owner on Aug 2, 2021. It is now read-only.

Merkle Tree Hash #48

Closed
wants to merge 21 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3ab152e
Swarm - plan bee for content storage and distribution on web3
Dec 3, 2015
9d2605e
integrate RPC v2 via develop
zelig Dec 14, 2015
0e26569
add SwarmSwapDisabled=bbzswapdisabled SwarmPort=bzzport flags
zelig Dec 18, 2015
18cac67
network test using ethutil/swarm
zelig Dec 18, 2015
477d498
update to latest develop
zelig Feb 1, 2016
fb3b4fa
support for separate url schemes for dns enabled, immutable and raw m…
Feb 4, 2016
863fbb4
Merge pull request #2372 from ethersphere/s/3_url_schemes
zelig Mar 22, 2016
5714724
swap integration test
zelig Feb 5, 2016
7d5c213
Merge pull request #2373 from ethersphere/s/network-tests
zelig Mar 22, 2016
dbb151b
Merge pull request #2373 from ethersphere/s/network-tests
zelig Mar 22, 2016
ba49d70
Merge branch 'swarm' of github.com:ethereum/go-ethereum into swarm
Mar 22, 2016
d7db41b
Merge pull request #2373 from ethersphere/s/network-tests
zelig Mar 22, 2016
6fb86ac
Merge branch 'swarm' of github.com:ethereum/go-ethereum into swarm
Mar 22, 2016
30d31cf
Merge pull request #2373 from ethersphere/s/network-tests
zelig Mar 22, 2016
0e8684a
Merge branch 'swarm' of github.com:ethereum/go-ethereum into swarm
Mar 23, 2016
89a2678
Merge pull request #2373 from ethersphere/s/network-tests
zelig Mar 22, 2016
02d3328
Merge branch 'swarm' of github.com:ethereum/go-ethereum into swarm
Mar 23, 2016
585bdac
Merkle hash calculation for chunks and empty tests
May 3, 2016
f3c497f
Test an actual Merkle hash tree.
May 3, 2016
4880fb6
Merkle hashing of individual chunks.
May 3, 2016
d2ae0e7
Change DB retrieval integrity checks to Merkle hash.
May 5, 2016
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: 1 addition & 0 deletions swarm/network/protocol.go
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@ func (self *bzz) sync(state *syncState) error {
// an explicitly received nil syncstate disables syncronisation
if state == nil {
self.syncEnabled = false
state = &syncState{DbSyncState: &storage.DbSyncState{}, Synced: true}
} else {
state.synced = make(chan bool)
state.SessionAt = cnt
Expand Down