1. Jan 25, 2019
  2. Jan 24, 2019
  3. Jan 23, 2019
  4. Jan 22, 2019
  5. Jan 21, 2019
    • asynchronous rob's avatar
    • Pierre Krieger's avatar
      Add some networking tests (#1480) · 1c29b93f
      Pierre Krieger authored
      1c29b93f
    • Tomasz Drwięga's avatar
      31b234e9
    • cheme's avatar
      Temporary fix for serde issue (#1511) · 7ff1a510
      cheme authored
      * Generate serde bound instead of relying on serde_derive.
      
      * remove comment
      7ff1a510
    • André Silva's avatar
      core: revert grandpa authorities unless imported blocked is queued (#1508) · 2e666316
      André Silva authored and asynchronous rob's avatar asynchronous rob committed
      * core: revert grandpa authorities unless imported blocked is queued
      
      * core: fix deadlock in `GrandpaBlockImport`
      2e666316
    • Sergei Pepyakin's avatar
      Remove `gas` function from the public API (#1503) · 4f993e6a
      Sergei Pepyakin authored
      
      
      * Disallow importing `gas` function
      
      * Update srml/contract/src/wasm/prepare.rs
      
      Co-Authored-By: default avatarpepyakin <[email protected]>
      4f993e6a
    • Michael Müller's avatar
      Fix wasm allocator (#1506) · 32e26191
      Michael Müller authored
      * Better allocator for wasm (#1460)
      
      * Add Arch Linux installation instructions
      
      * Enable tracing heap size
      
      * Extract heap
      
      * Replace linear allocator with buddy allocator
      
      * Fix test
      
      The purose of this big block is for the tests
      to test a failure when the block is too big
      though. The improved buddy allocation strategy
      results in this block fitting on the heap now.
      Hence the increase.
      
      * Get rid of memcpy in to_vec()
      
      * fixup: Style and comments
      
      * fixup: Split Linux instructions by distribution
      
      To prevent misunderstandings of people executing both.
      
      * fixup: Remove unnecessary types and code
      
      * fixup: Make Pointers start from 1, remove some panics, code improvements
      
      * fixup: Return 0 on errors
      
      * fixup: Move loop to separate function
      
      * fixup: Use FnvHashMap instead of HashMap
      
      * fixup: Fix error handling
      
      * fixup: Use current_size() instead of used_size()
      
      * fixup: Fix and document allocation offset
      
      * fixup: Remove unnecessary multiplication
      
      * fixup: Fix comments
      
      * fixup: Remove Arch installation instructions
      
      * Revert "Fix test"
      
      This reverts commit 292c177d.
      
      * fixup: Remove unused code, improve import
      
      * fixup: Proper alignment
      
      * fixup: Do not use internal constant in public description
      
      * fixup: Add comment regarding invariants
      
      * fixup: Move assertion to compile-time check
      
      * Fix bug in necessary tree level calculation
      
      The tree levels necessary to house a number
      of nodes was calculated incorrectly.
      
      * Improve naming
      32e26191