1. Aug 09, 2019
    • Bastian Köcher's avatar
      Adds `--no-validator` CLI flag (#3348) · c824c959
      Bastian Köcher authored
      * Implement `is_validator` for offchain-workers
      
      * Introduce `--no-validator` flag
      
      * Don't run babe/grandpa/im-online when `--no-validator` is given
      
      * Fixes compilation
      
      * Bump spec version
      
      * Improve error handling in executor
      
      * Add missing extern function
      
      * Revert making error public
      
      * Remove `--no-validator` CLI
      c824c959
    • Denis_P's avatar
      Check for warnings (#2850) · b4b53cbb
      Denis_P authored
      * check for warnings
      
      * test run
      
      * prebuild wasm binaries, pre-test is not needed for now
      
      * will run everywhere but PRs
      
      * lost warnings
      
      * lost warnings
      
      * try warnings with tests
      
      * Update expected stderr in UI tests
      
      * added to RUSTFLAGS
      
      * another way of collecting warnings
      
      * bump impl_version
      
      * fix int tests parser
      
      * revert demis changes and impl version bump
      
      * no need to collect warnings in int test
      b4b53cbb
    • André Silva's avatar
      grandpa: fix catch up test (#3347) · 44515ed5
      André Silva authored
      44515ed5
    • Gavin Wood's avatar
      Introduce AppVerify (#3343) · cc02a742
      Gavin Wood authored
      This trait, which works just like `Verify`, except on AppKey types.
      I'd like for it all just to be `Verify`, but Rust's trait rules
      concerning upstream changes mean it can't happen. This is a simple
      workaround needed for some stuff in Polkadot.
      cc02a742
  2. Aug 08, 2019
    • André Silva's avatar
    • asynchronous rob's avatar
      remove unneeded as_ref call (#3349) · a1a8c982
      asynchronous rob authored
      a1a8c982
    • Arkadiy Paronyan's avatar
      Fixed warnings (#3345) · 17a851b4
      Arkadiy Paronyan authored and asynchronous rob's avatar asynchronous rob committed
      17a851b4
    • David Craven's avatar
      Remove Decode trait bound. (#3342) · a7c87f21
      David Craven authored
      a7c87f21
    • Pierre Krieger's avatar
      Service various cleanups (#3238) · bafc7202
      Pierre Krieger authored
      * Remove generic from sign()
      
      * Remove mandatory RuntimeGenesis trait req
      
      * Remove requirement from Configuration
      
      * Relax trait bounds of core/cli
      
      * Move method
      
      * The config field is no longer public
      
      * Remove Components from bounds of functions
      
      * Implement DerefMut for LightComponents
      
      * Implement Executor for Full/LightComponents
      
      * Fix bad merge
      
      * Fix forgotten config()
      
      * Fix build
      bafc7202
    • Logan Saether's avatar
      Fix documentation set_controller (#3340) · fe18b405
      Logan Saether authored
      The documentation for the `set_controller` function was copied from the function above it, however it does not do the same thing. Fixed the documentation to fit the correct description of what `set_controller` does.
      fe18b405
    • cheme's avatar
      Child storage tests and genesis fix. (#3185) · b0e1212d
      cheme authored
      * Using child storage, (srml-support only), test failing .
      
      * fix simple tests.
      
      * Enumerable by requiring owned struct (previous form only allow
      &'static).
      Broken tests are from genesis init.
      
      * implement for_child_keys_with_prefix
      
      * indent
      
      * clear_child_prefix fix.
      
      * clear_child_prefix fix 2.
      
      * fix for storage_impl, if/when allowing child and not child this could be
      reverted.
      
      * Fix lot of urlinked child genesis, still need to look upon actual
      genesis srml module code.
      Probably still a lot of broken code needing debugging.
      
      * switch well_known_key to their associated module child trie.
      Fix a genesis init (balance).
      Complete some testing.
      Comment some tests before using.
      
      * fixing test runtime child keys
      
      * latest commit fix broken genesis init
      
      * fix system balances child name.
      
      * Important fix: storage_root from test externalities need children (it is
      already the case for ext).
      
      * executive root with child calculation
      
      * Avoid empty trie on test ext.
      
      * Symetric removal of key for system.
      
      * commenting changes related tests.
      
      * Remove child module specifics.
      
      * fix issues.
      
      * fix some formatting
      
      * fix bench and bump runtime
      
      * Remove extend_storage_overlays, assimilate_storage do the same as is
      proper considering srml macro.
      
      * Fix warning for assimilate.
      
      * Removing kill as they do not impact any test cases.
      
      * Use tuple of storage map instead of two parameters. This changes the
      behavior of decl_storage genesis build closure (breaking api).
      
      * Do not use build storage before assimilate.
      
      * fix error
      
      * Update core/state-machine/src/backend.rs
      b0e1212d
    • Jim Posen's avatar
      srml-contracts: Refactor away some duplication in runtime functions. (#3257) · 0067b2d9
      Jim Posen authored
      * srml-contracts: Storage access micro-optimization.
      
      * srml-contracts: Refactor runtime functions to reduce duplication.
      
      * Bump node runtime impl version.
      0067b2d9
    • Bastian Köcher's avatar
      Make `--dev` to `--alice` again (#3338) · 7c1fc4cc
      Bastian Köcher authored
      7c1fc4cc
    • Bastian Köcher's avatar
      Adds `author_rotateKeys` RPC (#3337) · 0de7d9bb
      Bastian Köcher authored
      * Adds `author_rotateKeys` RPC
      
      `author_rotateKeys` will rotate all session keys, store them into the
      keystore and returns their encoded public keys as result. These encoded
      public keys can be used directly to send the transaction to the chain.
      
      * Review comments
      0de7d9bb
    • André Silva's avatar
      grandpa: track multiple live rounds in voter set state (#3298) · 6565e1f8
      André Silva authored
      * grandpa: track multiple live rounds in voter set state
      
      * grandpa: don't assume rounds are completed in-order
      
      * grandpa: fix tests
      
      * grandpa: don't assume round is being tracked on Environment::completed
      
      * grandpa: fix missing import in test
      6565e1f8
    • Xiliang Chen's avatar
      add post_dispatch (#3229) · 0f0df985
      Xiliang Chen authored
      * add post_dispatch
      
      * Update traits.rs
      
      * Update checked_extrinsic.rs
      
      * Update traits.rs
      
      * Update traits.rs
      
      * fix build issue
      
      * update runtime version
      
      * fix test build issue
      0f0df985
    • Pierre Krieger's avatar
      Switch offchain workers to new futures (#3285) · 3d65753d
      Pierre Krieger authored
      * Switch offchain workers to new futures
      
      * Fix tests
      3d65753d
    • Arkadiy Paronyan's avatar
      Improve console output (#3326) · b2927723
      Arkadiy Paronyan authored
      * Cache idle state
      
      * Display import error by default
      b2927723
    • Bastian Köcher's avatar
      Clean up CLI interface (#3334) · 60269d65
      Bastian Köcher authored
      * Clean up CLI interface
      
      - Removes `--validator` and `--grandpa-voter`
      - Make `--alice` etc work without `--dev`
      
      * Style fixes
      60269d65
    • Pierre Krieger's avatar
      Reintroduce mplex (reverts #3312) (#3328) · 63969014
      Pierre Krieger authored
      This reverts commit f11291cd.
      63969014
  3. Aug 07, 2019
    • Arkadiy Paronyan's avatar
      Fixed test block conditions (#3332) · c0fd256c
      Arkadiy Paronyan authored
      c0fd256c
    • Arkadiy Paronyan's avatar
      Set uncles inherent (#3317) · 58bd0d4c
      Arkadiy Paronyan authored
      * Include uncles
      
      * Filter missing uncles
      
      * Moved inherent registration to a new crate
      
      * Ignore invalid inherent encoding
      58bd0d4c
    • Bastian Köcher's avatar
      Make `DefaultByte` implement `Send + Sync` (#3333) · ea58b7c9
      Bastian Köcher authored
      * Make `DefaultByte` implement `Send + Sync`
      
      * Update runtime version.
      ea58b7c9
    • Bastian Köcher's avatar
      More tests and some cleanup (#3331) · 46709e83
      Bastian Köcher authored
      46709e83
    • thiolliere's avatar
      Staking optimisation (#3300) · 556a9416
      thiolliere authored and asynchronous rob's avatar asynchronous rob committed
      * staking code api
      
      * doc + test
      
      * version bump
      
      * index fn
      
      * rename function
      
      * doc
      
      * adress comments
      
      * add complexity comment
      556a9416
    • Andrew Jones's avatar
      Derive CompactAs for Perbill/mill/U128 (#3327) · 65a76293
      Andrew Jones authored
      * Derive CompactAs for Perbill/mill/U128
      
      * Increment impl_version
      65a76293
    • Pierre Krieger's avatar
      Rename CustomProto to LegacyProto (#3313) · c32d9a17
      Pierre Krieger authored
      c32d9a17
    • Pierre Krieger's avatar
      Make Verifier::verify mutable (#3165) · 97febf4c
      Pierre Krieger authored
      * Make Verifier::verify mutable
      
      * Fix GrandPa tests
      
      * Fix doctest
      
      * Fix more doctests
      97febf4c
    • Pierre Krieger's avatar
      Remove support for mplex (#3312) · f11291cd
      Pierre Krieger authored
      f11291cd
    • Arkadiy Paronyan's avatar
      Handle telemetry socket errors (#3321) · b5cd3628
      Arkadiy Paronyan authored
      * Handle telemetry socket errors
      
      * Line width
      b5cd3628
    • Svyatoslav Nikolsky's avatar
    • Gavin Wood's avatar
      Refactor key management (#3296) · 1a524b82
      Gavin Wood authored
      
      
      * Add Call type to extensible transactions.
      
      Cleanup some naming
      
      * Merge Resource and BlockExhausted into just Exhausted
      
      * Fix
      
      * Another fix
      
      * Call
      
      * Some fixes
      
      * Fix srml tests.
      
      * Fix all tests.
      
      * Refactor crypto so each application of it has its own type.
      
      * Introduce new AuthorityProvider API into Aura
      
      This will eventually allow for dynamic determination of authority
      keys and avoid having to set them directly on CLI.
      
      * Introduce authority determinator for Babe.
      
      Experiment with modular consensus API.
      
      * Work in progress to introduce KeyTypeId and avoid polluting API
      with validator IDs
      
      * Finish up drafting imonline
      
      * Rework offchain workers API.
      
      * Rework API implementation.
      
      * Make it compile for wasm, simplify app_crypto.
      
      * Fix compilation of im-online.
      
      * Fix compilation of im-online.
      
      * Fix more compilation errors.
      
      * Make it compile.
      
      * Fixing tests.
      
      * Rewrite `keystore`
      
      * Fix session tests
      
      * Bring back `TryFrom`'s'
      
      * Fix `srml-grandpa`
      
      * Fix `srml-aura`
      
      * Fix consensus babe
      
      * More fixes
      
      * Make service generate keys from dev_seed
      
      * Build fixes
      
      * Remove offchain tests
      
      * More fixes and cleanups
      
      * Fixes finality grandpa
      
      * Fix `consensus-aura`
      
      * Fix cli
      
      * Fix `node-cli`
      
      * Fix chain_spec builder
      
      * Fix doc tests
      
      * Add authority getter for grandpa.
      
      * Test fix
      
      * Fixes
      
      * Make keystore accessible from the runtime
      
      * Move app crypto to its own crate
      
      * Update `Cargo.lock`
      
      * Make the crypto stuff usable from the runtime
      
      * Adds some runtime crypto tests
      
      * Use last finalized block for grandpa authority
      
      * Fix warning
      
      * Adds `SessionKeys` runtime api
      
      * Remove `FinalityPair` and `ConsensusPair`
      
      * Minor governance tweaks to get it inline with docs.
      
      * Make the governance be up to date with the docs.
      
      * Build fixes.
      
      * Generate the inital session keys
      
      * Failing keystore is a hard error
      
      * Make babe work again
      
      * Fix grandpa
      
      * Fix tests
      
      * Disable `keystore` in consensus critical stuff
      
      * Build fix.
      
      * ImOnline supports multiple authorities at once.
      
      * Update core/application-crypto/src/ed25519.rs
      
      * Merge branch 'master' into gav-in-progress
      
      * Remove unneeded code for now.
      
      * Some `session` testing
      
      * Support querying the public keys
      
      * Cleanup offchain
      
      * Remove warnings
      
      * More cleanup
      
      * Apply suggestions from code review
      
      Co-Authored-By: default avatarBenjamin Kampmann <[email protected]>
      
      * More cleanups
      
      * JSONRPC API for setting keys.
      
      Also, rename traits::KeyStore* -> traits::BareCryptoStore*
      
      * Bad merge
      
      * Fix integration tests
      
      * Fix test build
      
      * Test fix
      
      * Fixes
      
      * Warnings
      
      * Another warning
      
      * Bump version.
      1a524b82
    • Bastian Köcher's avatar
    • Arkadiy Paronyan's avatar
      4242a4e5
    • Bastian Köcher's avatar
      Update to schnorrkel `0.8.0` (#3267) · 394eff6c
      Bastian Köcher authored
      
      
      * Update to schnorrkel `0.8.0`
      
      * Increase `spec_version`
      
      * Bump schnorrkel to 0.8.3 (#3283)
      
      * Schnorrkel 0.8.1 (builds on bkchr upgrade branch)
      
      * Add tests for known hard/soft derivation values
      
      * Bump all schnorrkel versions
      
      * Flatten for easier inspection
      
      * 0.8.2
      
      * 0.8.3
      
      * Update subkey/Cargo.toml
      
      Co-Authored-By: default avatarBastian Köcher <[email protected]>
      
      * Update `Cargo.lock`
      
      * 0.8.4
      
      * Fix cargo lock file.
      
      * Adding an error message for `NotMarkedSchnorrkel` as that was missing.
      Also fixing a typo, strage -> stage.
      394eff6c
    • Pierre Krieger's avatar
      Rename on_demand to light_dispatch and various minor changes (#3315) · b5b1c2a4
      Pierre Krieger authored
      * Rename on_demand to light_server
      
      * Small docs improvement
      
      * Rename on_block_announce to update_best_number
      
      * More minor documentation
      
      * Light server -> light dispatch
      
      * is_light_rq_response -> is_light_response
      b5b1c2a4
    • thiolliere's avatar
      Fix decl_storage map and linked_map for insert_ref (#3316) · 87e72d93
      thiolliere authored
      
      
      * test
      
      * fix
      
      * bumpd version
      
      * Update srml/support/procedural/src/storage/impls.rs
      
      Co-Authored-By: default avatarBastian Köcher <[email protected]>
      87e72d93
  4. Aug 06, 2019