Skip to content

Latest commit

 

History

History

local-substrate-dev-chain

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Launch A Local Substrate Development Chain

Result

proof local node

Notes

Using lastest nightly was causing compile issues for Substrate:

 error[E0282]: type annotations needed
      --> /Users/user/.cargo/registry/src/github.com-1ecc6299db9ec823/sp-arithmetic-2.0.0/src/fixed_point.rs:541:9
       |
  541  |                   let accuracy = P::ACCURACY.saturated_into();
       |                       ^^^^^^^^ consider giving `accuracy` a type
  ...
  1604 | / implement_fixed!(
  1605 | |     FixedI128,
  1606 | |     test_fixed_i128,
  1607 | |     i128,
  ...    |
  1611 | |         [-170141183460469231731.687303715884105728, 170141183460469231731.687303715884105727]_",
  1612 | | );
       | |__- in this macro invocation
       |
       = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)

I had to downgrade: paritytech/substrate#7150 (comment)

rustup toolchain list

rustup toolchain default 1.45.1-x86_64-apple-darwin
rustup target add wasm32-unknown-unknown --toolchain nightly-2020-08-19-x86_64-unknown-linux-gnu
rustup toolchain install nightly-2020-08-19-x86_64-unknown-linux-gnu

Resources