Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 e2e/chains/bsc/Dockerfile.bootstrap
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ghcr.io/foundry-rs/foundry:nightly-462b2ac6c038dc24b8f38b0c59b664d0740604c2
FROM ghcr.io/foundry-rs/foundry:v0.3.0
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nightly-462b2ac6c038dc24b8f38b0c59b664d0740604c2 is no longer available

Copy link
Member

@3100 3100 Apr 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you! I was just encountering the same problem in another repository. When accessing with nightly-xxx (for v0.3.0, nightly-5a8bd893eeeeb9489ea66dd52a02eeaa580e3af0), it becomes 'manifest unknown,' but I see that it can be retrieved when specified with a version


RUN apk add --d --no-cache ca-certificates npm nodejs bash alpine-sdk expect jq curl bash python3
RUN apk add --d --no-cache npm nodejs bash alpine-sdk expect jq curl bash python3-dev py3-pip
RUN curl -sSL https://install.python-poetry.org | python3 -

RUN git clone https://github.com/bnb-chain/bsc-genesis-contract -b develop /root/genesis \
Expand Down
2 changes: 1 addition & 1 deletion e2e/chains/bsc/docker-compose.bsc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ services:
dockerfile: Dockerfile.bsc
args:
GIT_SOURCE: https://github.com/bnb-chain/bsc
GIT_CHECKOUT_BRANCH: v1.5.9
GIT_CHECKOUT_BRANCH: v1.5.10
image: bsc-geth:docker-local
5 changes: 3 additions & 2 deletions module/fork_spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"context"
"fmt"
"github.com/hyperledger-labs/yui-relayer/log"
"math"
"os"
"strconv"
)
Expand Down Expand Up @@ -77,8 +76,10 @@ func GetForkParameters(network Network) []*ForkSpec {
EpochLength: 200,
MaxTurnLength: 9,
},
// https://github.com/bnb-chain/bsc/blob/1ded6d7ecfc1a9b71accab03aef99d816eeda446/params/config.go#L192
// https://github.com/bnb-chain/bsc/releases/tag/v1.5.10
{
HeightOrTimestamp: &ForkSpec_Timestamp{Timestamp: math.MaxUint64},
HeightOrTimestamp: &ForkSpec_Timestamp{Timestamp: 1745903100 * 1000},
AdditionalHeaderItemCount: 1,
EpochLength: 500,
MaxTurnLength: 64,
Expand Down