Green Baneling
Green Baneling
Conversion from Bytes64 to PublicKey [here](https://github.com/FuelLabs/fuel-vm/blob/2c8cb46f72c5c21648753fd6cb2f590276021486/fuel-crypto/src/secp256/public.rs#L120) is incorrect. sec1 includes 1 tag byte at the start of point encoding, so a valid uncompressed PublicKey would be 65 bytes. This is...
Conversion from Bytes64 to PublicKey [here](https://github.com/FuelLabs/fuel-vm/blob/2c8cb46f72c5c21648753fd6cb2f590276021486/fuel-crypto/src/secp256/public.rs#L120) is incorrect. sec1 includes 1 tag byte at the start of point encoding, so a valid uncompressed PublicKey would be 65 bytes. This is...
Just duplicate the minor release to the `master` branch
Closes https://github.com/FuelLabs/fuel-vm/issues/832 After we introduced the `Upgrade` transaction and started to use postcard to encode the consensus parameters, we basically made the `serde` feature required. Part of our codebase already...
[Link to related issue(s) here, if any] [Short description of the changes.] ## Checklist - [ ] Breaking changes are clearly marked as such in the PR description and changelog...
Proposals to the https://github.com/FuelLabs/fuel-core/pull/2396
Because of race condition it was possible that dry run will fail. I moved the check to production, where we really need to require this behavior. But in the case...
The current code has 4 separate databases. While it makes sense to have a big cache and a number of allowed descriptors for on-chain and off-chain databases, relayer and gas...
## Oveview In several places of the codebase we have cases when we need to get multiple values at once. It is faster to do via multi-get operation. Also, we...