Skip to content
  1. Jul 26, 2021
  2. Jul 23, 2021
  3. Jul 22, 2021
  4. Jul 21, 2021
    • Lldenaurois's avatar
      Dispute coordinator - Recover disputes on startup (#3481) · 1858ff57
      Lldenaurois authored
      * node/dispute-coordinator: Introduce resume capability
      
      This commit introduces a resume capability for the
      dispute coordinator subsystem. Specifically, this will allow
      to recover data for disputes for which we have no local statements.
      
      * node/dispute-coordinator: Add resume function to TestState and modify Harness
      
      This commit modifies the TestHarness to return a TestState. We subsequently
      define a resume function on TestState that allows to interrupt the test and
      test specifically for behavior on startup of the subsystem.
      
      * node/dispute-coordinator: Implement resume functionality
      
      This commit implements the resume functionality for the subsystem.
      In addition, we will forward any DisputeParticipation::Participate
      message in order to ensure that disputes for which we do not have
      local statements may be recovered in due time.
      
      * Address Feedback
      
      * Modify to run handle_leaf on first import
      
      * Modify missing_local_statement l...
      1858ff57
    • Hernando Castano's avatar
      Use correct syntax for owning all files in a folder (#3510) · 7aaaa9ec
      Hernando Castano authored
      From the GitHub docs:
      
      > # The `docs/*` pattern will match files like
      > # `docs/getting-started.md` but not further nested files like
      > # `docs/build-app/troubleshooting.md`.
      > docs/*  [email protected]
      >
      > # In this example, @octocat owns any file in an apps directory
      > # anywhere in your repository.
      > apps/ @octocat
      7aaaa9ec
    • Andreas Doerr's avatar
      Add wococo-local chain spec (#3509) · 310aa6f3
      Andreas Doerr authored
      310aa6f3
    • asynchronous rob's avatar
      Dispute vote filtering for block authors (#3498) · 675f71a8
      asynchronous rob authored
      
      
      * guide: filter_multi_dispute_data
      
      * guide: elaborate
      
      * Implementation of dispute data filtering
      
      * tests for filtering
      
      * don't use std, you fool!
      
      * use swap_remove
      
      * Update runtime/parachains/src/disputes.rs
      
      Co-authored-by: default avatarAndronik Ordian <[email protected]>
      
      * use btreeste
      
      * address API nit
      
      Co-authored-by: default avatarAndronik Ordian <[email protected]>
      675f71a8
    • dependabot[bot]'s avatar
      Bump indexmap from 1.6.1 to 1.7.0 (#3497) · 1fd95607
      dependabot[bot] authored
      
      
      Bumps [indexmap](https://github.com/bluss/indexmap) from 1.6.1 to 1.7.0.
      - [Release notes](https://github.com/bluss/indexmap/releases)
      - [Commits](https://github.com/bluss/indexmap/compare/1.6.1...1.7.0)
      
      ---
      updated-dependencies:
      - dependency-name: indexmap
        dependency-type: direct:production
        update-type: version-update:semver-minor
      ...
      
      Signed-off-by: default avatardependabot[bot] <[email protected]>
      
      Co-authored-by: default avatardependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
      1fd95607
  5. Jul 20, 2021
  6. Jul 19, 2021
    • dependabot[bot]'s avatar
      Bump libc from 0.2.91 to 0.2.98 (#3496) · d3adc575
      dependabot[bot] authored
      
      
      Bumps [libc](https://github.com/rust-lang/libc) from 0.2.91 to 0.2.98.
      - [Release notes](https://github.com/rust-lang/libc/releases)
      - [Commits](https://github.com/rust-lang/libc/compare/0.2.91...0.2.98)
      
      ---
      updated-dependencies:
      - dependency-name: libc
        dependency-type: direct:production
        update-type: version-update:semver-patch
      ...
      
      Signed-off-by: default avatardependabot[bot] <[email protected]>
      
      Co-authored-by: default avatardependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
      d3adc575
    • dependabot[bot]'s avatar
      Bump slotmap from 1.0.2 to 1.0.5 (#3495) · 6ba5d536
      dependabot[bot] authored
      
      
      Bumps [slotmap](https://github.com/orlp/slotmap) from 1.0.2 to 1.0.5.
      - [Release notes](https://github.com/orlp/slotmap/releases)
      - [Changelog](https://github.com/orlp/slotmap/blob/master/RELEASES.md)
      - [Commits](https://github.com/orlp/slotmap/compare/v1.0.2...v1.0.5)
      
      ---
      updated-dependencies:
      - dependency-name: slotmap
        dependency-type: direct:production
        update-type: version-update:semver-patch
      ...
      
      Signed-off-by: default avatardependabot[bot] <[email protected]>
      
      Co-authored-by: default avatardependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
      6ba5d536
    • Andreas Doerr's avatar
      Gossip rebroadcast rate limiter (#3494) · 67e671ff
      Andreas Doerr authored
      67e671ff
    • ordian's avatar
      dependabot: ignore another git dep (#3493) · d5b5bd23
      ordian authored
      d5b5bd23
    • Bernhard Schuster's avatar
      add rustfmt toml (#3491) · 97dc1de7
      Bernhard Schuster authored
      * feat: rustfmt.toml
      
      Copied from substrate.
      
      * avoid normalize
      
      It has some odd side effects converting // to /* */ instead of the other way round. See https://github.com/rust-lang/rustfmt/issues/4909 .
      97dc1de7
    • asynchronous rob's avatar
      Disputes runtime (#2947) · ec98120f
      asynchronous rob authored
      
      
      * disputes module skeleton and storage
      
      * implement dispute module initialization logic
      
      * implement disputes session change logic
      
      * provide dispute skeletons
      
      * deduplication & ancient check
      
      * fix a couple of warnings
      
      * begin provide_dispute_data impl
      
      * flesh out statement set import somewhat
      
      * move ApprovalVote to shared primitives
      
      * add a signing-payload API to explicit dispute statements
      
      * implement statement signature checking
      
      * some bitflags glue for observing changes in disputes
      
      * implement dispute vote import logic
      
      * flesh out everything except slashing
      
      * guide: tweaks
      
      * declare and use punishment trait
      
      * punish validators for inconclusive disputes
      
      * guide: tiny fix
      
      * guide: update docs
      
      * add disputes getter fn
      
      * guide: small change to spam slots handling
      
      * improve spam slots handling and fix some bugs
      
      * finish API of disputes runtime
      
      * define and deposit `RevertTo` log
      
      * begin integrating disputes into para_inherent
      
      * use precomputed slash_for/against
      
      * return candidate hash from process_bitfields
      
      * implement inclusion::collect_disputed
      
      * finish integration into rest of runtime
      
      * add Disputes to initializer
      
      * address suggestions
      
      * use pallet macro
      
      * fix typo
      
      * Update runtime/parachains/src/disputes.rs
      
      * add test: fix pruning
      
      * document specific behavior
      
      * deposit events on dispute changes
      
      * add an allow(unused) on fn disputes
      
      * add a dummy PunishValidators implementation
      
      * add disputes module to Rococo
      
      * add disputes module to westend runtime
      
      * add disputes module to test runtime
      
      * add disputes module to kusama runtime
      
      * guide: prepare for runtime API for checking frozenness
      
      * remove revert digests in favor of state variable
      
      * merge reversions
      
      * Update runtime/parachains/src/disputes.rs
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      
      * Update runtime/parachains/src/disputes.rs
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      
      * Update runtime/parachains/src/disputes.rs
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      
      * add byzantine_threshold and supermajority_threshold utilities to primitives
      
      * use primitive helpers
      
      * deposit revert event when freezing chain
      
      * deposit revert log when freezing chain
      
      * test revert event and log are generated when freezing
      
      * add trait to decouple disputes handling from paras inherent handling
      
      * runtime: fix compilation and setup dispute handler
      
      * disputes: add hook for filtering out dispute statements
      
      * disputes: add initializer hooks to DisputesHandler
      
      * runtime: remove disputes pallet from all runtimes
      
      * tag TODOs
      
      * don't import any dispute statements just yet...
      
      * address grumbles
      
      * fix spellcheck, hopefully
      
      * maybe now?
      
      * last spellcheck round
      
      * fix runtime tests
      
      * fix test-runtime
      
      Co-authored-by: default avatarthiolliere <[email protected]>
      Co-authored-by: default avatarAndré Silva <[email protected]>
      Co-authored-by: default avatarAndré Silva <[email protected]>
      ec98120f
    • dependabot[bot]'s avatar
      Bump async-process from 1.0.1 to 1.1.0 (#3122) · 4636daa7
      dependabot[bot] authored
      
      
      Bumps [async-process](https://github.com/smol-rs/async-process) from 1.0.1 to 1.1.0.
      - [Release notes](https://github.com/smol-rs/async-process/releases)
      - [Changelog](https://github.com/smol-rs/async-process/blob/master/CHANGELOG.md)
      - [Commits](https://github.com/smol-rs/async-process/compare/v1.0.1...v1.1.0)
      
      Signed-off-by: default avatardependabot[bot] <[email protected]>
      
      Co-authored-by: default avatardependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
      4636daa7
    • Pierre Besson's avatar
      remove the kubernetes helm chart (#3483) · 661cfbcf
      Pierre Besson authored
      661cfbcf
    • Denis Tsai's avatar
  7. Jul 16, 2021
  8. Jul 15, 2021
  9. Jul 14, 2021
  10. Jul 13, 2021
    • Seun Lanlege's avatar
      Introduce test runner biolerplate (#2609) · ab9c86d5
      Seun Lanlege authored
      
      
      * adds test-runner boilerplate
      
      * revert to master
      
      * Update node/test/runtime/Cargo.toml
      
      Co-authored-by: default avatarAndronik Ordian <[email protected]>
      
      * fix warning
      
      * use polkadot_development_config
      
      * remove vestigial code
      
      * ...
      
      * remove unused dependencies
      
      * adds simnet binary
      
      * adds simnet binary
      
      * merged with remote
      
      * dummy to check pipeline
      
      * add 2 docker files and a build cmd
      
      * adds logging
      
      * atempt to use binary from build host
      
      * fix simnet-binary
      
      * fix docker commands
      
      * switch branches
      
      * ...
      
      * update docker file
      
      * update the dockerfile 2
      
      * add some message in the cheatsheet
      
      * add repo to chaches stage also
      
      * update paths
      
      * do only 1 stage build
      
      * add time when build cmd started
      
      * remove debugg commands
      
      * polkadot-simnet-substrate-working-version-v1
      
      * reduce size of polkadot-simnet image
      
      * update test runner api
      
      * update test-runner
      
      * ...
      
      * revert to master
      
      * Merge branch 'master' of github.com:paritytech/polkadot into substrate-test-runner
      
      * bump impl version
      
      * remove unused imports, fix test
      
      * was_binary.to_vec()
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarAndronik Ordian <[email protected]>
      
      * ...
      
      * remove unused import
      
      * remove unused import
      
      * adds post upgrade test
      
      * dry code
      
      * revert spec_version
      
      * update Cargo.lock
      
      * tested and it works
      
      * compare runtime spec version
      
      * fix spaces, remove docker files
      
      * replace spaces with tabs
      
      * Update runtime/polkadot/src/lib.rs
      
      Co-authored-by: default avatarAndronik Ordian <[email protected]>
      
      * ...
      
      * revert Cargo.lock
      
      * bump cargo.lock
      
      Co-authored-by: default avatarAndronik Ordian <[email protected]>
      Co-authored-by: default avatarradupopa2010 <[email protected]>
      Co-authored-by: CI system <>
      ab9c86d5
    • Qinxuan Chen's avatar
      Companion for substrate#9197 (#3359) · 41045d89
      Qinxuan Chen authored
      
      
      * Companion for substrate#9197
      
      Signed-off-by: default avatarkoushiro <[email protected]>
      
      * update Substrate
      
      Co-authored-by: default avatarShawn Tabrizi <[email protected]>
      Co-authored-by: parity-processbot <>
      41045d89
    • Lldenaurois's avatar
      Dispute coordinator overlay (#3462) · dc092778
      Lldenaurois authored
      * node/dispute-coordinator: Modify db to return SubsystemResult.
      
      In preparation of moving to the overlayed backend pattern, this commit
      moves the db to return SubsystemResult values.
      
      * node/dispute-coordinator: Add the Backend and OverlayedBackend.
      
      This commit adds the backend and overlayed backend structs to the
      dispute-coordinator subsystem.
      
      * node/dispute-coordinator: Implement backend and overlayed-backend.
      
      This commit finalizes the move from the previous transactional model
      to the common overlay pattern in subsystem persistency. This can be
      observed in the ApprovalVoting and ChainSelection subsystems.
      
      * Add module docs + license
      
      * Touchup merge
      dc092778
    • Kian Paimani's avatar
      Small tweaks to staking miner (#3460) · 7948eae5
      Kian Paimani authored
      * Fix miner
      
      * fix miner
      
      * Update utils/staking-miner/src/monitor.rs
      
      * Fix width
      7948eae5
    • Lldenaurois's avatar
      Dispute Coordinator: Batch queries (#3459) · 2d66b8f2
      Lldenaurois authored
      * disputes: Allow batch queries in dispute-coordinator
      
      This commit moves to batch queries when responding to QueryCandidateVotes
      messages. This simplifies the code in the provisioner and dispute-coordinator
      by no longer requiring to make use of a FuturesOrdered when awaiting multiple
      quries. Instead, the provisioner need only request the batch itself.
      
      * node/approval-voting: Address Feedback to fail on query element missing.
      
      * Address feedback
      
      * Fix implementer's guide
      2d66b8f2
  11. Jul 12, 2021