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

runtime: don’t unnecessarily copy promise indices #8175

Merged
merged 4 commits into from
Dec 9, 2022

Commits on Dec 6, 2022

  1. runtime: don’t unnecessarily copy promise indices

    The promise_and method processes one promise index at a time.  There’s
    no benefit in having all them in memory.  Rather than copying the
    indices from Vec<u8> into a new Vec<u64> simply do the little endian
    conversion while going through the former vector.  This saves an
    allocation.
    mina86 committed Dec 6, 2022
    Configuration menu
    Copy the full SHA
    2e08572 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2022

  1. review

    mina86 committed Dec 7, 2022
    Configuration menu
    Copy the full SHA
    2d0594c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2d0446d View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2022

  1. Configuration menu
    Copy the full SHA
    b8d4fea View commit details
    Browse the repository at this point in the history