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: 4 additions & 0 deletions scripts/tests/api_compare/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@ services:
lotus sync wait
# After the sync is done, import the wallet for signing blocks. It might be already there, which will return an error. We ignore it.
echo $MINER_WORKER_KEY | lotus wallet import || true
# Wait until F3 certificate instance 100 is available
until lotus f3 c get 100; do
sleep 5s;
done
api-compare:
depends_on:
lotus-sync-wait:
Expand Down
2 changes: 1 addition & 1 deletion src/tool/subcommands/api_cmd/api_compare_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1822,7 +1822,7 @@ fn f3_tests() -> anyhow::Result<Vec<RpcTest>> {
))?),
RpcTest::identity(F3IsRunning::request(())?),
RpcTest::identity(F3GetCertificate::request((0,))?),
RpcTest::identity(F3GetCertificate::request((1000,))?),
RpcTest::identity(F3GetCertificate::request((100,))?),
RpcTest::identity(F3GetManifest::request(())?),
])
}
Expand Down
Loading