jordy25519
jordy25519
how's 0.5.0 for the crate version?
adding some info fullnodes now listen at this address by default: `/ip4/0.0.0.0/tcp/30333/ws` `/ip6/::/tcp/30333/ws` validators are unchanged: `/ip6/::/tcp/30333` `/ip4/0.0.0.0/tcp/30333`
someone built a tool for it 🎉 https://github.com/maxsam4/fork-off-substrate
This one was difficult because the native address scheme in the runtime is 32 bytes. We would either have to error if the token was owned by a native address...
I think this is specifically a windows problem (docker requiring virtualization). Basically need to build from source on the machine to get a native binary
Online epoch/session duration change seems to be more possible than ever, example plug branch here: https://github.com/plugblockchain/plug-blockchain/compare/try_epoch_change
The azalea wasm was generated pre-benchmarking instrumentation so there's nothing we can do here. If it's necessary to test this can create a new chainspec with same config where possible...
evm will be doing lots of spending assetId queries
related #641
solidity inserts an EXTCODESIZE check when calling a contract with this casting syntax e.g `IContract(address).method(…)` when it calls a precompile address `EXTCODESIZE` is 0 so it reverts. Using `address.call{}` syntax...