Skip to content
Snippets Groups Projects
  1. Jun 01, 2021
  2. May 31, 2021
  3. May 29, 2021
  4. May 28, 2021
  5. May 27, 2021
    • MOZGIII's avatar
      More sc-service config reexports (#8887) · c8ea0c7a
      MOZGIII authored
      * Reexport ExecutionStrategies and ExecutionStrategy
      
      * Reexport more of the network
      
      * Reexport the ExecutionStrategy as it's used within ExecutionStrategies
      c8ea0c7a
    • Denis_P's avatar
      CI: fix simnet trigger (#8927) · 95e296de
      Denis_P authored
      * CI: chore
      
      * CI: pin simnet version
      95e296de
    • Roman Proskuryakov's avatar
      Remove: (#8748) · 8dfb8cd9
      Roman Proskuryakov authored
      * `NetworkStatusSinks`
      * `sc_service::SpawnTasksParams::network_status_sinks`
      
      Also:
      * `sc_service::build_network()` does not return `network_status_sinks`
      8dfb8cd9
    • Shawn Tabrizi's avatar
      Fix Compiler Warnings (new rustc) (#8907) · fa89414b
      Shawn Tabrizi authored
      
      * unused mmr
      
      * more unused
      
      * dyn in executor
      
      * remove `doc(inline)`
      
      * fix dyn for sp-api-test
      
      * update benchmarks
      
      * Update primitives/core/benches/bench.rs
      
      * Update primitives/core/benches/bench.rs
      
      * update another bench
      
      * fix benchmark?
      
      Co-authored-by: default avataradoerr <0xad@gmx.net>
      fa89414b
  6. May 26, 2021
  7. May 25, 2021
    • Alexander Theißen's avatar
      contracts: Fix some minor bugs around instantiation (#8879) · c92d4a26
      Alexander Theißen authored
      
      * Fix output of wrongly outputted error
      
      The "Tombstoned a contract that is below the subsistence threshold: {:?}" was
      triggered when too few balance was provided. It was a false alarm.
      
      * Fix return of wrong code_len
      
      * Split up `NotCallable` into more fine grained errors
      
      * Fix typos in docs
      
      Co-authored-by: default avatarKeith Yeung <kungfukeith11@gmail.com>
      
      * RentNotPayed -> RentNotPaid
      
      * Fix typo: payed -> paid
      
      It is OK to change the in-storage field name because:
      
      1. The SCALE encoding is not based on names only on position.
      2. The struct is not public (only to the crate).
      
      Co-authored-by: default avatarKeith Yeung <kungfukeith11@gmail.com>
      c92d4a26
    • Denis_P's avatar
      Fix build job (#8905) · a28a517c
      Denis_P authored
      * CI: fix node-template packaging
      
      * add explicit deps versions
      a28a517c
    • Denis_P's avatar
      Fix stderr in new Rust nightly (#8904) · 2928e428
      Denis_P authored
      * CI: revert me
      
      * fix stderr
      
      * CI: revert me
      
      * typo
      
      * more stderr fixes
      
      * Revert "CI: revert me"
      
      This reverts commit 5f47effc4965fa5c0c2a6ed92e434a6adb6b1dce.
      
      * Revert "CI: revert me"
      
      This reverts commit 7f785660c797b703dd36272cbe313056dd7a1858.
      2928e428
    • Frederik Schulz's avatar
      Removes unnecessary blank impl for Backend (#8897) · ad76ac79
      Frederik Schulz authored
      * Removes unnecessary blank impl for Backend
      
      This commit removes a from my perspective unneccessary implementation
      for &T which implement Backend.
      
      The current implementation exists (again from my perspective) solely
      to satisfy a methods &mut self parameters (i.e. allows to satisfy
      this for an & reference via using &mut &Backend).
      
      As all implementors use a RefCell with borrow_mut() where actually
      calling the mentioned &mut self method and then forwad to the
      {} implementation of either TrieBackend or ProvingBackend, the
      current &mut self seems to be not needed.
      
      * Fixed tests client
      ad76ac79