You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discussed, this should be a cli arg feature flag rather than a compile flag. Otherwise it will impact the ability of the released binaries to be used by sdk harnesses etc.
Closes#1297#1296
Removed `manual_blocks_enabled` flag.
Added a new `debug` flag:
```rust
/// Should be used for local development only. Enabling debug mode:
/// - Allows GraphQL Endpoints to arbitrarily advanced blocks.
/// - Enabled debugger GraphQL Endpoints.
/// - Allows setting `utxo_validation` to `false`.
#[arg(long = "debug", env)]
pub debug: bool,
```
Removed `debug` and `dap` features, now the code contains it by default and disables it if `debug` is `false` in the config.
---------
Co-authored-by: Brandon Vrooman <brandon.vrooman@fuel.sh>
crypto523
added a commit
to crypto523/fuel-core
that referenced
this issue
Oct 7, 2024
ClosesFuelLabs/fuel-core#1297FuelLabs/fuel-core#1296
Removed `manual_blocks_enabled` flag.
Added a new `debug` flag:
```rust
/// Should be used for local development only. Enabling debug mode:
/// - Allows GraphQL Endpoints to arbitrarily advanced blocks.
/// - Enabled debugger GraphQL Endpoints.
/// - Allows setting `utxo_validation` to `false`.
#[arg(long = "debug", env)]
pub debug: bool,
```
Removed `debug` and `dap` features, now the code contains it by default and disables it if `debug` is `false` in the config.
---------
Co-authored-by: Brandon Vrooman <brandon.vrooman@fuel.sh>
From the comment: https://github.com/FuelLabs/fuel-core/pull/1286/files#r1290825419
Blocked by #1296
The text was updated successfully, but these errors were encountered: