Skip to content
  1. Aug 24, 2020
  2. Aug 15, 2020
  3. Aug 13, 2020
    • asynchronous rob's avatar
      Remove v0 parachains runtime (#1501) · 57aef8ee
      asynchronous rob authored
      * remove v0 parachains modules and switch to v1 primitives
      
      * get tests compiling for runtime-common
      
      * remove registrar module
      
      * Add a dummy module
      
      * remove runtime-parachains
      
      * mostly remove old parachains code from polkadot-runtime
      
      * remove slots::Trait implementation
      
      * remove sp_std prelude import
      
      * add a ZeroSizedTypeDifferentiator to dummy
      
      * finish porting over polkadot runtime
      
      * ZeroSizedTypeDifferentiator was actually unnecessary
      
      * westend
      
      * kusama
      
      * test-runtime (no dummy modules)
      
      * fix warning
      
      * fix chain-specs
      
      * fix test-service
      
      * test-client
      
      * remove dead import
      
      * remove unused needed_extrinsics parameter
      
      * runtimes compile
      
      * remove rococo-v0
      
      * remove remaining references to Rococo
      
      * bump versions
      57aef8ee
    • Cecile Tonglet's avatar
      Allow using any polkadot client instead of enum Client (#1575) · 661c10a2
      Cecile Tonglet authored
      * WIP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * WIP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * WIP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * WIP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * WIP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * WIP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * WIP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * WIP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * Apply suggestions from code review
      
      * WIP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * WIP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * WIP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * CLEANUP
      
      Forked at: e91642361133dba084a9c9b3efa45fcb6cd3c5ca
      Parent branch: origin/rococo-branch
      
      * link in doc
      
      * doc
      661c10a2
  4. Aug 05, 2020
  5. Aug 04, 2020
    • Bastian Köcher's avatar
      Rewrite client handling (#1531) · c01aa8ba
      Bastian Köcher authored
      
      
      * Rewrite client handling
      
      We are supporting muliple polkadot-like chains and all have different
      client types. This pr reworks the client handling by having all of them
      in one enum combined. Besides that, there is added a special trait
      `ExecuteWithClient` to use the internal client.
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarRobert Habermeier <[email protected]>
      
      * Up the versions
      
      * Fix Cargo.lock
      
      * Fix merge conflict
      
      * ......................
      
      * ....v2
      
      * yep
      
      * I'm dumb...
      
      * Browser lol
      
      Co-authored-by: default avatarRobert Habermeier <[email protected]>
      c01aa8ba
  6. Aug 03, 2020
  7. Jul 23, 2020
    • Ashley's avatar
      Companion PR for `Remove the service builder` (#1448) · 6919c303
      Ashley authored
      * Switch branch
      
      * Update branch
      
      * Change service code
      
      * Change light service stuff to be functions ^_^
      
      * Update substrate branch
      
      * Remove accidental 'f'
      
      * Rework LightBackend/LightClient types
      
      * Update substrate branch
      
      * Remove unused imports in test-service
      
      * Add #[cfg(feature = full-node)]
      6919c303
  8. Jul 13, 2020
    • Max Inden's avatar
      *: Enable authority discovery by default (#1395) · 59f5eb4c
      Max Inden authored
      * *: Enable authority discovery by default
      
      Instead of having to explicitly enable the authority discovery module on
      validator and sentry nodes, this commit enables the module by default.
      
      Today there is no way for non validator or sentry nodes to run the
      module. That might change in the future.
      
      * service/src/lib: Fix typo in new_full! for test
      59f5eb4c
  9. Jul 10, 2020
    • asynchronous rob's avatar
      Refactor primitives (#1383) · 3b13cd9a
      asynchronous rob authored
      * create a v1 primitives module
      
      * Improve guide on availability types
      
      * punctuate
      
      * new parachains runtime uses new primitives
      
      * tests of new runtime now use new primitives
      
      * add ErasureChunk to guide
      
      * export erasure chunk from v1 primitives
      
      * subsystem crate uses v1 primitives
      
      * node-primitives uses new v1 primitives
      
      * port overseer to new primitives
      
      * new-proposer uses v1 primitives (no ParachainHost anymore)
      
      * fix no-std compilation for primitives
      
      * service-new uses v1 primitives
      
      * network-bridge uses new primitives
      
      * statement distribution uses v1 primitives
      
      * PoV distribution uses v1 primitives; add PoV::hash fn
      
      * move parachain to v0
      
      * remove inclusion_inherent module and place into v1
      
      * remove everything from primitives crate root
      
      * remove some unused old types from v0 primitives
      
      * point everything else at primitives::v0
      
      * squanch some warns up
      
      * add RuntimeDebug import to no-std as well
      
      * port over statement-table and validation
      
      * fix final errors in validation and node-primitives
      
      * add dummy Ord impl to committed candidate receipt
      
      * guide: update CandidateValidationMessage
      
      * add primitive for validationoutputs
      
      * expand CandidateValidationMessage further
      
      * bikeshed
      
      * add some impls to omitted-validation-data and available-data
      
      * expand CandidateValidationMessage
      
      * make erasure-coding generic over v1/v0
      
      * update usages of erasure-coding
      
      * implement commitments.hash()
      
      * use Arc<Pov> for CandidateValidation
      
      * improve new erasure-coding method names
      
      * fix up candidate backing
      
      * update docs a bit
      
      * fix most tests and add short-circuiting to make_pov_available
      
      * fix remainder of candidate backing tests
      
      * squanching warns
      
      * squanch it up
      
      * some fallout
      
      * overseer fallout
      
      * free from polkadot-test-service hell
      3b13cd9a
  10. Jul 09, 2020