Green Baneling
Green Baneling
Extract [types](https://github.com/FuelLabs/fuel-core/tree/master/crates/client/src/client) from `fuel-core-client` into a separate `no_std` compatible crate. - Create a new `fuel-core-client-types` crate with `schema` inside - Update CI to check that we can compile this crate...
We must process a huge state if we need to re-genesis in the mainnet. It can be so huge that it can not even fit into the RAM. So, we...
Sometimes some in the beta3 got 100%(800% for eight cores) CPU load. We have a hot loop that consumes all CPU. It would be useful to add more metrics https://github.com/FuelLabs/fuel-core/issues/1168...
Update API of the `TxPool` to return `Vec` batched by dependencies for parallel execution(but now only one batch). On the `executor` side use `rayon` to execute them in one thread.
Maybe it could be a root cause to https://github.com/FuelLabs/fuel-core/issues/1190
Added several new options for the `rustfmt.toml`, because I'm trying to keep the code in this style without them. Why not to automate them=D
The primary purpose of a separate crate for `Database` is to make the `fuel-core` cleaner. With the extraction of it, the `fuel-core` will have only the logic of connecting all...
## Overview The source is a pull request https://github.com/FuelLabs/fuel-core/pull/822. While we support only one subscription(for transaction status), it is not a critical issue. Also, after https://github.com/FuelLabs/fuel-core/issues/588, it would be the...
The genesis block can be filled with `Message`s, but because there is no signer and no known consensus algorithm, it is unclear how to prove and bridge messages back to...