Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0a75000
Initial commit
AlexeyAkhunov Oct 27, 2020
5e13a21
Add sentry gRPC interface
vorot93 Oct 28, 2020
c4e14d6
p2psentry directory
AlexeyAkhunov Oct 28, 2020
ea14fa4
Update README.md
AlexeyAkhunov Oct 28, 2020
07db484
Update README.md
AlexeyAkhunov Oct 28, 2020
84c5faa
Update README.md
AlexeyAkhunov Oct 28, 2020
ae78fe9
Add go package
AlexeyAkhunov Oct 28, 2020
eb9859d
Correct syntax
AlexeyAkhunov Oct 28, 2020
fe462b7
Merge pull request #1 from ledgerwatch/go-package
AlexeyAkhunov Oct 29, 2020
acd02bb
add external downloader interface (#2)
b00ris Nov 10, 2020
e793b60
Add txpool (#3)
vorot93 Nov 25, 2020
0941b09
Add private API (#4)
vorot93 Feb 12, 2021
c6677a3
Invert control.proto, add PeerMinBlock, Separare incoming Tx message …
AlexeyAkhunov Feb 14, 2021
1c0976a
Use new p2psentry interface
Feb 14, 2021
e791b49
Remove
Feb 14, 2021
0c02561
Add 'interfaces/' from commit 'c6677a3cc744f500c294ed2cfcb257d8d242b6ae'
Feb 14, 2021
df7e097
Fix lint
Feb 14, 2021
4d52f51
Fix lint
Feb 14, 2021
50a3552
Separate upload messages into its own stream (#6)
AlexeyAkhunov Feb 14, 2021
7831507
Add header upload
Feb 14, 2021
3e3e487
Remove
Feb 14, 2021
37c1485
Add 'interfaces/' from commit '50a3552b464d51dc21b6c60795ec576526b97ccb'
Feb 14, 2021
f651eb7
Add upload of block headers
Feb 14, 2021
c4d405b
Add block bodies upload
Feb 14, 2021
8b7dff3
Fix lint
Feb 14, 2021
a65dcec
Bugfix for blockBodies
Feb 14, 2021
8191ad1
Fix for body upload logging
Feb 14, 2021
ceadd80
Print peerId for GetBlockHeaders
Feb 14, 2021
241557b
Invoke block hashes stage to enable block body upload
Feb 15, 2021
4b4ef80
Fix test
Feb 15, 2021
39dbef1
Fix stuck bodies download
Feb 15, 2021
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ integration:
@echo "Run \"$(GOBIN)/integration\" to launch integration tests."

headers:
$(GOBUILD) -o $(GOBIN)/headers ./cmd/headers
$(GOBUILD) -o $(GOBIN)/headers -tags 'mdbx' ./cmd/headers
@echo "Done building."
@echo "Run \"$(GOBIN)/integration\" to run headers download PoC."
@echo "Run \"$(GOBIN)/headers\" to run headers download PoC."

db-tools:
go mod vendor; cd vendor/github.com/ledgerwatch/lmdb-go/dist; make clean mdb_stat mdb_copy mdb_dump mdb_load; cp mdb_stat $(GOBIN); cp mdb_copy $(GOBIN); cp mdb_dump $(GOBIN); cp mdb_load $(GOBIN); cd ../../../../..; rm -rf vendor
Expand Down
Loading