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

devnet: make deals go fast again with lotus master #183

Merged
merged 1 commit into from
Jun 7, 2021

Commits on Jun 7, 2021

  1. devnet: make deals go fast again with lotus master

    Since the network version 13 merge in Lotus master on June 3rd,
    at filecoin-project/lotus#6342,
    our integration tests would seem to hang at StorageDealAwaitingPreCommit
    for long enough to make the tests time out.
    
    After some debugging and interaction with Łukasz, it turns out that
    BatchPreCommits is a new option that's on by default, which made our
    single deal wait for more sectors to go through.
    
    After fixing that, we had the same problem with StorageDealSealing,
    which is similarly fixed by turning off AggregateCommits.
    
    Lotus doesn't have a way to set or modify these options directly,
    so our next best option is a bit of sed to modify the TOML.
    mvdan committed Jun 7, 2021
    Configuration menu
    Copy the full SHA
    ebba8ad View commit details
    Browse the repository at this point in the history