Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Participation Lottery Pallet #7221

Merged
40 commits merged into from
Jan 5, 2021
Merged

Participation Lottery Pallet #7221

40 commits merged into from
Jan 5, 2021

Commits on Sep 26, 2020

  1. Basic design

    shawntabrizi committed Sep 26, 2020
    Configuration menu
    Copy the full SHA
    a1262a2 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2020

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

Commits on Nov 25, 2020

  1. start adding tests

    shawntabrizi committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    8ce5540 View commit details
    Browse the repository at this point in the history
  2. finish tests

    shawntabrizi committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    fc12be9 View commit details
    Browse the repository at this point in the history
  3. clean up crates

    shawntabrizi committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    d8f0598 View commit details
    Browse the repository at this point in the history
  4. use call index for match

    shawntabrizi committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    1289a8e View commit details
    Browse the repository at this point in the history
  5. finish benchmarks

    shawntabrizi committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    82da7df View commit details
    Browse the repository at this point in the history
  6. add to runtime

    shawntabrizi committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    14a5c44 View commit details
    Browse the repository at this point in the history
  7. Merge remote-tracking branch 'origin/master' into shawntabrizi-lottery

    Parity Benchmarking Bot committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    ed7c11e View commit details
    Browse the repository at this point in the history
  8. fix

    shawntabrizi committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    f67b119 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    48725b5 View commit details
    Browse the repository at this point in the history
  10. Merge remote-tracking branch 'origin/master' into shawntabrizi-lottery

    Parity Benchmarking Bot committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    12a87b2 View commit details
    Browse the repository at this point in the history
  11. cargo run --release --features=runtime-benchmarks --manifest-path=bin…

    …/node/cli/Cargo.toml -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet_lottery --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/lottery/src/weights.rs --template=./.maintain/frame-weight-template.hbs
    Parity Benchmarking Bot committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    90a3335 View commit details
    Browse the repository at this point in the history
  12. more efficient storage

    shawntabrizi committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    844646b View commit details
    Browse the repository at this point in the history
  13. Merge remote-tracking branch 'origin/master' into shawntabrizi-lottery

    Parity Benchmarking Bot committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    23647d1 View commit details
    Browse the repository at this point in the history
  14. cargo run --release --features=runtime-benchmarks --manifest-path=bin…

    …/node/cli/Cargo.toml -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet_lottery --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/lottery/src/weights.rs --template=./.maintain/frame-weight-template.hbs
    Parity Benchmarking Bot committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    a121177 View commit details
    Browse the repository at this point in the history
  15. Update lib.rs

    shawntabrizi committed Nov 25, 2020
    Configuration menu
    Copy the full SHA
    6b14824 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    e9e0b5a View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2020

  1. Configuration menu
    Copy the full SHA
    0ced83e View commit details
    Browse the repository at this point in the history
  2. trait -> config

    shawntabrizi committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    eee7412 View commit details
    Browse the repository at this point in the history
  3. add repeating lottery

    shawntabrizi committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    47b1860 View commit details
    Browse the repository at this point in the history
  4. new benchmarks

    shawntabrizi committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    05c97ef View commit details
    Browse the repository at this point in the history
  5. fix build

    shawntabrizi committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    c78726f View commit details
    Browse the repository at this point in the history
  6. move trait for warning

    shawntabrizi committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    5585006 View commit details
    Browse the repository at this point in the history
  7. feedback from @xlc

    shawntabrizi committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    5ded45d View commit details
    Browse the repository at this point in the history
  8. add stop_repeat

    shawntabrizi committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    9739b40 View commit details
    Browse the repository at this point in the history
  9. fix

    shawntabrizi committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    ef67c0e View commit details
    Browse the repository at this point in the history
  10. cargo run --release --features=runtime-benchmarks --manifest-path=bin…

    …/node/cli/Cargo.toml -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet_lottery --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/lottery/src/weights.rs --template=./.maintain/frame-weight-template.hbs
    Parity Benchmarking Bot committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    649cfa7 View commit details
    Browse the repository at this point in the history
  11. Support static calls

    shawntabrizi committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    d50bf84 View commit details
    Browse the repository at this point in the history
  12. Merge remote-tracking branch 'origin/master' into shawntabrizi-lottery

    Parity Benchmarking Bot committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    280afe6 View commit details
    Browse the repository at this point in the history
  13. cargo run --release --features=runtime-benchmarks --manifest-path=bin…

    …/node/cli/Cargo.toml -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet_lottery --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/lottery/src/weights.rs --template=./.maintain/frame-weight-template.hbs
    Parity Benchmarking Bot committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    5460912 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2020

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

Commits on Dec 5, 2020

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

Commits on Jan 1, 2021

  1. Configuration menu
    Copy the full SHA
    9707522 View commit details
    Browse the repository at this point in the history
  2. fix test

    shawntabrizi committed Jan 1, 2021
    Configuration menu
    Copy the full SHA
    c343e03 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8fc534c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    34e9c43 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2021

  1. Initialize pot with ED

    shawntabrizi committed Jan 5, 2021
    Configuration menu
    Copy the full SHA
    e3c6a16 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into shawntabrizi-lottery

    Parity Benchmarking Bot committed Jan 5, 2021
    Configuration menu
    Copy the full SHA
    7b4ee4a View commit details
    Browse the repository at this point in the history
  3. cargo run --release --features=runtime-benchmarks --manifest-path=bin…

    …/node/cli/Cargo.toml -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet_lottery --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/lottery/src/weights.rs --template=./.maintain/frame-weight-template.hbs
    Parity Benchmarking Bot committed Jan 5, 2021
    Configuration menu
    Copy the full SHA
    3de5a8b View commit details
    Browse the repository at this point in the history