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

fix: upstream pruning fixes to v1.2.0 #1204

Merged
merged 46 commits into from
Nov 8, 2024
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
0db0077
separate pruning services
srene Oct 18, 2024
2601c54
prune update
srene Oct 18, 2024
ab4d211
test fix
srene Oct 18, 2024
01d7423
test fix
srene Oct 18, 2024
427eadc
fixing tests
srene Oct 18, 2024
59b929c
minor edit
srene Oct 18, 2024
d008de9
lint fix
srene Oct 18, 2024
05a7a96
refactor base height store
srene Oct 22, 2024
731112d
fixes
srene Oct 22, 2024
0fe8df5
drying
srene Oct 22, 2024
08a2330
logging
srene Oct 22, 2024
4d2bf08
mocks
srene Oct 22, 2024
17968af
lint
srene Oct 22, 2024
09892bd
fix
srene Oct 22, 2024
12e10ec
minor edit
srene Oct 23, 2024
f6486b6
fix
srene Oct 26, 2024
26a205c
cleaning
srene Oct 26, 2024
7a47e11
logging
srene Oct 26, 2024
669159b
fixing merge
srene Oct 26, 2024
84b712f
fix
srene Oct 26, 2024
7248745
log
srene Oct 26, 2024
b8dbbde
check before deleting
srene Oct 27, 2024
c285d84
lint
srene Oct 27, 2024
6a4749c
test
srene Oct 27, 2024
ad61fc0
fix
srene Oct 27, 2024
7db51bf
fix merge
srene Oct 28, 2024
51a8154
fix
srene Oct 28, 2024
e24e318
improving logs
srene Oct 29, 2024
4032d57
updates
srene Nov 5, 2024
8425783
fixes
srene Nov 7, 2024
a04a4e0
fix rpc
srene Nov 7, 2024
b4f4dd6
lint fix
srene Nov 7, 2024
49ae0d1
test fix
srene Nov 7, 2024
62eb4cc
small improvements
srene Nov 7, 2024
d70ba3c
small improvements
srene Nov 7, 2024
dd1894b
small improvements
srene Nov 7, 2024
8779e83
small improvements
srene Nov 7, 2024
9a3805a
small improvements
srene Nov 7, 2024
53821e7
fixing test
srene Nov 7, 2024
b49606e
lint fix
srene Nov 7, 2024
e0abede
it leak
srene Nov 7, 2024
23864d5
discard not found error tx event
srene Nov 7, 2024
4eb7cc3
clean
srene Nov 7, 2024
cd7b2f8
prune fix
srene Nov 7, 2024
b5d914c
lint fix
srene Nov 7, 2024
c0b7939
inc toflush before
srene Nov 8, 2024
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
Prev Previous commit
Next Next commit
fix
  • Loading branch information
srene committed Oct 28, 2024
commit 51a81545183e5840b51f882246ee580fec7ac1d5
2 changes: 1 addition & 1 deletion p2p/block_sync_dag.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func (bsDagService *BlockSyncDagService) DeleteBlock(ctx context.Context, cid ci
for _, l := range root.Links() {
err := bsDagService.Remove(ctx, l.Cid)
if err != nil {
return nil
return err
}
}
return nil
Expand Down