alpha
Login
or
Join now
willdot.net
/
distributed-pds
forked from
willdot.net/cocoon
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
A fork of the Cocoon PDS but being made more distributed.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix
author
Hailey
date
11 months ago
(Jul 19, 2025, 10:32 AM -0700)
commit
ac10b7c6
ac10b7c6d38ba3f23245d79e2bbef7bf823d87d0
parent
9fbd74c1
9fbd74c10e490237e8beb34e8e9732843b6bada3
+3
-2
2 changed files
Expand all
Collapse all
Unified
Split
recording_blockstore
recording_blockstore.go
sqlite_blockstore
sqlite_blockstore.go
+2
-1
recording_blockstore/recording_blockstore.go
Reviewed
···
2
2
3
3
import (
4
4
"context"
5
5
+
"fmt"
5
6
6
7
blockformat "github.com/ipfs/go-block-format"
7
8
"github.com/ipfs/go-cid"
···
58
59
}
59
60
60
61
func (bs *RecordingBlockstore) AllKeysChan(ctx context.Context) (<-chan cid.Cid, error) {
61
61
-
return bs.AllKeysChan(ctx)
62
62
+
return nil, fmt.Errorf("iteration not allowed on recording blockstore")
62
63
}
63
64
64
65
func (bs *RecordingBlockstore) HashOnRead(enabled bool) {
+1
-1
sqlite_blockstore/sqlite_blockstore.go
Reviewed
···
129
129
}
130
130
131
131
func (bs *SqliteBlockstore) AllKeysChan(ctx context.Context) (<-chan cid.Cid, error) {
132
132
-
panic("not implemented")
132
132
+
return nil, fmt.Errorf("iteration not allowed on sqlite blockstore")
133
133
}
134
134
135
135
func (bs *SqliteBlockstore) HashOnRead(enabled bool) {