Igor Żuk

Results 81 issues of Igor Żuk

There's no mechanism preventing us from modifying the runtime without bumping its version. In the GCS along the runtime file there should be a file following the same naming convention,...

project-health

In a longer run the mining rate is slightly below 60 blocks per hour: ![image](https://user-images.githubusercontent.com/26183680/81821030-b02e9380-9531-11ea-8970-c602c335b108.png)

The users of the client (wallets) need not only the current state of their accounts, but also their histories. This may or may not be provided by Substrate.

The e2e tests use a bare bones client, which makes them fragile when adding changes. The client could absorb helper tools like `create_random_org` too. It could switch under the hood...

project-health

We need to be able to migrate the accounts between machines. ### The proposition: Add commands: - `account export`, which exports accounts to a file - `account import`, which imports...

This is a trusted software, the release page should provide hashes of the artifacts.

We have `scripts/build-release`, which generates the node and cli binaries. It would be convenient to have a script to install the binaries from source with `cargo install`. It would ease...

The easiest way is to print `clap::App::gen_completions` in one of subcommands. It supports multiple shells out of the box. The user can then save the output in a file to...

**🧐 Motivation** Some contracts need to act differently depending on the chain they're deployed on. E.g. the ecosystem may have different addresses. If you don't want to outsource all these...

**🧐 Motivation** Go fast. **📝 Details** Function `sort` from `utils/Arrays.sol` uses a private function `_quickSort`, which works on the array pointer and two indexes. It makes multiple array accesses, and...