Skip to content
Snippets Groups Projects
  1. May 25, 2022
    • Nazar Mokrynskyi's avatar
      Companion for #11415 (WeightToFee) (#5525) · c090fb4c
      Nazar Mokrynskyi authored
      * Companion for https://github.com/paritytech/substrate/pull/11415
      
      * Rename `WeightToFee::calc()` to `WeightToFee::wight_to_fee()`
      
      * Fix typo
      
      * Fix compile errors
      
      * update lockfile for {"substrate"}
      
      Co-authored-by: parity-processbot <>
      c090fb4c
  2. May 24, 2022
  3. May 21, 2022
  4. May 19, 2022
    • Shawn Tabrizi's avatar
      Rename BagsList to VoterList and Add Score (#5463) · b61c7515
      Shawn Tabrizi authored
      * add migration for simple pallet rename
      
      * fmt
      
      * also add score migration
      
      * add try-runtime feature to bags list
      
      * add pre_upgrade to pallet rename
      
      * update lockfile for {"substrate"}
      
      Co-authored-by: parity-processbot <>
      b61c7515
    • Bernhard Schuster's avatar
      overseer becomes orchestra (#5542) · 450ca2ba
      Bernhard Schuster authored
      
      * rename overseer-gen to orchestra
      
      Also drop `gum` and use `tracing`.
      
      * make orchestra compile as standalone
      
      * introduce Spawner trait to split from sp_core
      
      Finalizes the independence of orchestra from polkadot-overseer
      
      * slip of the pen
      
      * other fixins
      
      * remove unused import
      
      * Update node/overseer/orchestra/proc-macro/src/impl_builder.rs
      
      Co-authored-by: default avatarVsevolod Stakhov <vsevolod.stakhov@parity.io>
      
      * Update node/overseer/orchestra/proc-macro/src/impl_builder.rs
      
      Co-authored-by: default avatarVsevolod Stakhov <vsevolod.stakhov@parity.io>
      
      * orchestra everywhere
      
      * leaky data
      
      * Bump scale-info from 2.1.1 to 2.1.2 (#5552)
      
      Bumps [scale-info](https://github.com/paritytech/scale-info) from 2.1.1 to 2.1.2.
      - [Release notes](https://github.com/paritytech/scale-info/releases)
      - [Changelog](https://github.com/paritytech/scale-info/blob/master/CHANGELOG.md)
      - [Commits](https://github.com/paritytech/scale-info/compare/v2.1.1...v2.1.2)
      
      ---
      updated-d...
      450ca2ba
    • Koute's avatar
      Switch to pooling copy-on-write instantiation strategy for WASM (companion for... · d9eff4ec
      Koute authored
      Switch to pooling copy-on-write instantiation strategy for WASM (companion for Substrate#11232) (#5337)
      
      * Switch to pooling copy-on-write instantiation strategy for WASM
      
      * Fix compilation of `polkadot-test-service`
      
      * Update comments
      
      * Move `max_memory_size` to `Semantics`
      
      * Rename `WasmInstantiationStrategy` to `WasmtimeInstantiationStrategy`
      
      * Update a safety comment
      
      * update lockfile for {"substrate"}
      
      Co-authored-by: parity-processbot <>
      d9eff4ec
    • dependabot[bot]'s avatar
      Bump scale-info from 2.1.1 to 2.1.2 (#5552) · 2906ee1b
      dependabot[bot] authored
      
      Bumps [scale-info](https://github.com/paritytech/scale-info) from 2.1.1 to 2.1.2.
      - [Release notes](https://github.com/paritytech/scale-info/releases)
      - [Changelog](https://github.com/paritytech/scale-info/blob/master/CHANGELOG.md)
      - [Commits](https://github.com/paritytech/scale-info/compare/v2.1.1...v2.1.2)
      
      ---
      updated-dependencies:
      - dependency-name: scale-info
        dependency-type: direct:production
        update-type: version-update:semver-patch
      ...
      
      Signed-off-by: default avatardependabot[bot] <support@github.com>
      
      Co-authored-by: default avatardependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
      2906ee1b
  5. May 18, 2022
    • Vsevolod Stakhov's avatar
      Implement grid topology routing for the statement distribution subsystem (#5476) · 195b901c
      Vsevolod Stakhov authored
      
      * Move NewGossipTopology -> SessionGridTopology outside as this implementation is shared
      
      * Add method to return peers difference between topologies
      
      * Implement basic grid topology usage for the bitfield distribution
      
      * Fix tests
      
      * Oops, fix tests
      
      * Add some tests for random routing
      
      * Add a unit test for topology distribution
      
      * Store the current and the previous topology to match sessions boundaries
      
      * Update tests
      
      * Update node/network/bitfield-distribution/src/lib.rs
      
      Co-authored-by: default avatarAndronik <write@reusable.software>
      
      * Update node/network/protocol/src/grid_topology.rs
      
      Co-authored-by: default avatarAndronik <write@reusable.software>
      
      * Update node/network/bitfield-distribution/src/lib.rs
      
      Co-authored-by: default avatarAndronik <write@reusable.software>
      
      * Add some debug
      
      * Fix tests as HashSet order is undefined
      
      * Move session bounded topology to the common code part
      
      * Fix tests
      
      * Allow to select routing by peer index
      
      * Implement grid topology in the statement distribution subsystem
      
      * Fix tests compilation
      
      * Fix test
      
      * Refactor API slightly
      
      * Address review comments
      
      * Reduce runtime error logging severity
      
      * Update node/network/protocol/src/grid_topology.rs
      
      Co-authored-by: default avatarBernhard Schuster <bernhard@ahoi.io>
      
      * Update node/network/bitfield-distribution/src/tests.rs
      
      Co-authored-by: default avatarBernhard Schuster <bernhard@ahoi.io>
      
      * Fmt run
      
      * Use named struct
      
      * Fix logging stuff
      
      * One more accidental fmt damage
      
      * Increase active queue size and add metrics
      
      Signed-off-by: default avatarAndrei Sandu <andrei-mihail@parity.io>
      
      * Revert "Increase active queue size and add metrics"
      
      This reverts commit c4f48e8bded6dfeb9c62814ba2f8d815c34b04cf.
      
      * Use validator index to choose the routing strategy
      
      Noted by: @rphmeier
      
      
      
      * Fix test after distribution logic fix
      
      Co-authored-by: default avatarAndronik <write@reusable.software>
      Co-authored-by: default avatarBernhard Schuster <bernhard@ahoi.io>
      Co-authored-by: default avatarAndrei Sandu <andrei-mihail@parity.io>
      195b901c
  6. May 17, 2022
  7. May 16, 2022
  8. May 12, 2022
  9. May 11, 2022
    • Kian Paimani's avatar
      companion for 11350 (#5489) · eb2448e1
      Kian Paimani authored
      * fix all runtimes
      
      * fix staking miner
      
      * update lockfile for {"substrate"}
      
      Co-authored-by: parity-processbot <>
      eb2448e1
    • Niklas Adolfsson's avatar
      companion for #11395 (#5499) · 71838011
      Niklas Adolfsson authored
      * companion for 11395
      
      * update lockfile for {"substrate"}
      
      Co-authored-by: parity-processbot <>
      71838011
    • Kian Paimani's avatar
      Add Nomination Pools to Kusama (#5447) · 9f21ec97
      Kian Paimani authored
      
      * add nomination pools to kusama
      
      * Update runtime/kusama/src/lib.rs
      
      Co-authored-by: default avatarMara Robin B. <mara@broda.me>
      
      * Update runtime/kusama/src/lib.rs
      
      * probably fix build
      
      * really fix build
      
      * fix benches
      
      * cargo run --quiet --profile=production  --features=runtime-benchmarks -- benchmark pallet --chain=kusama-dev --steps=50 --repeat=20 --pallet=pallet_nomination_pools --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/kusama/src/weights/
      
      * cargo run --quiet --profile=production  --features=runtime-benchmarks -- benchmark pallet --chain=westend-dev --steps=50 --repeat=20 --pallet=pallet_nomination_pools --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/
      
      * whitelist transactional storage limit
      
      * make defensive
      
      * fix
      
      * cargo run --quiet --profile=production  --features=runtime-benchmarks -- benchmark pallet --chain=westend-dev --steps=50 --repeat=20 --pallet=pallet_nomination_pools --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/
      
      * update
      
      * fix benches
      
      * cargo run --quiet --profile=production  --features=runtime-benchmarks -- benchmark pallet --chain=kusama-dev --steps=50 --repeat=20 --pallet=pallet_nomination_pools --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/kusama/src/weights/
      
      * change head
      
      * fmt
      
      Co-authored-by: default avatarMara Robin B. <mara@broda.me>
      Co-authored-by: default avatarParity Bot <admin@parity.io>
      9f21ec97
  10. May 10, 2022
    • Kian Paimani's avatar
      Companion for pools tweaks (#5488) · be8cbc80
      Kian Paimani authored
      * add weights
      
      * update lockfile for {"substrate"}
      
      Co-authored-by: parity-processbot <>
      be8cbc80
    • Niklas Adolfsson's avatar
      companion for #8783 - jsonrpsee (#4344) · 804d0f38
      Niklas Adolfsson authored
      * add jsonrpsee glue code
      
      * diener --substrate dp-jsonrpsee-integration-2
      
      * cargo fmt
      
      * update substrate
      
      * fix build
      
      * update substrate
      
      * fix tests
      
      * update substrate
      
      * update substrate
      
      * revert Cargo.toml
      
      * revert changes in Cargo.toml
      
      * jsonrpsee v0.11
      
      * fix staking miner
      
      * chore: update jsonrpsee v0.12
      
      * update companion
      
      * update companion
      
      * fix changes in substrate
      
      * revert requires_full_sync removal
      
      * fix: read WS address from polkadot output
      
      * fit nits
      
      * fix more nits
      
      * update lockfile for {"substrate"}
      
      * cargo fmt
      
      Co-authored-by: parity-processbot <>
      804d0f38
  11. May 08, 2022
    • dependabot[bot]'s avatar
      Bump log from 0.4.16 to 0.4.17 · 992705d1
      dependabot[bot] authored
      
      Bumps [log](https://github.com/rust-lang/log) from 0.4.16 to 0.4.17.
      - [Release notes](https://github.com/rust-lang/log/releases)
      - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
      - [Commits](https://github.com/rust-lang/log/commits/0.4.17)
      
      ---
      updated-dependencies:
      - dependency-name: log
        dependency-type: direct:production
        update-type: version-update:semver-patch
      ...
      
      Signed-off-by: default avatardependabot[bot] <support@github.com>
      992705d1
  12. May 07, 2022
  13. May 06, 2022
  14. May 05, 2022
  15. May 04, 2022