Skip to content

Commit

Permalink
feat: implement the gnfd peer for bsc nodes block syncing from Greenf…
Browse files Browse the repository at this point in the history
…ield (#1)

* feat: implement the gnfd peer for bsc nodes block syncing from Greenfield

* fix: tolerate the err
  • Loading branch information
alexgao001 authored Jul 24, 2024
1 parent 75d1629 commit f41e0e5
Show file tree
Hide file tree
Showing 103 changed files with 1,623 additions and 34,073 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ on:
- v*

env:
IMAGE_NAME: bsc
IMAGE_NAME: bsc-client
IMAGE_SOURCE: https://github.com/${{ github.repository }}

jobs:
# Push image to GitHub Packages.
Expand All @@ -21,14 +22,14 @@ jobs:
- name: Build image
run: |
docker build . \
--label "org.opencontainers.image.source=${{ secrets.IMAGE_SOURCE }}" \
--label "org.opencontainers.image.source=${IMAGE_SOURCE}" \
--label "org.opencontainers.image.revision=$(git rev-parse HEAD)" \
--label "org.opencontainers.image.version=$(git describe --tags --abbrev=0)" \
--label "org.opencontainers.image.licenses=LGPL-3.0,GPL-3.0" \
-f ./Dockerfile -t "${IMAGE_NAME}"
- name: Log into registry
run: echo "${{ secrets.PACKAGE_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
run: echo "${{ secrets.GH_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- name: Push image
run: |
Expand Down
56 changes: 0 additions & 56 deletions .github/workflows/evm-tests.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/integration-test.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ linters-settings:

issues:
exclude-rules:
- path: ./
linters:
- unused
- path: core/state/metrics.go
linters:
- unused
Expand Down
332 changes: 42 additions & 290 deletions README.md

Large diffs are not rendered by default.

Loading

0 comments on commit f41e0e5

Please sign in to comment.