aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/network
diff options
context:
space:
mode:
authorholisticode <holistic.computing@gmail.com>2019-02-07 22:49:19 +0800
committerRafael Matias <rafael@skyle.net>2019-02-19 20:06:13 +0800
commitd1ace4f344616fb6fa8643872c1f9cac89f8549e (patch)
tree807c6d7af3875e3aedc5fe6b24c463205cffab19 /swarm/network
parent637a75d61a13ee8a89a702a2eadb5ace3c79e7da (diff)
downloaddexon-d1ace4f344616fb6fa8643872c1f9cac89f8549e.tar
dexon-d1ace4f344616fb6fa8643872c1f9cac89f8549e.tar.gz
dexon-d1ace4f344616fb6fa8643872c1f9cac89f8549e.tar.bz2
dexon-d1ace4f344616fb6fa8643872c1f9cac89f8549e.tar.lz
dexon-d1ace4f344616fb6fa8643872c1f9cac89f8549e.tar.xz
dexon-d1ace4f344616fb6fa8643872c1f9cac89f8549e.tar.zst
dexon-d1ace4f344616fb6fa8643872c1f9cac89f8549e.zip
swarm: Debug API and HasChunks() API endpoint (#18980)
(cherry picked from commit 41597c2856d6ac7328baca1340c3e36ab0edd382)
Diffstat (limited to 'swarm/network')
-rw-r--r--swarm/network/stream/common_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/swarm/network/stream/common_test.go b/swarm/network/stream/common_test.go
index 7b2962608..74b33a747 100644
--- a/swarm/network/stream/common_test.go
+++ b/swarm/network/stream/common_test.go
@@ -137,6 +137,11 @@ func newRoundRobinStore(stores ...storage.ChunkStore) *roundRobinStore {
}
}
+// not used in this context, only to fulfill ChunkStore interface
+func (rrs *roundRobinStore) Has(ctx context.Context, addr storage.Address) bool {
+ panic("RoundRobinStor doesn't support HasChunk")
+}
+
func (rrs *roundRobinStore) Get(ctx context.Context, addr storage.Address) (storage.Chunk, error) {
return nil, errors.New("get not well defined on round robin store")
}