-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for
debug
CLI flag. (#1322)
Closes FuelLabs/fuel-core#1297 FuelLabs/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>
- Loading branch information
crypto523
and
Brandon Vrooman
committed
Aug 29, 2023
1 parent
a184dc9
commit de87fc7
Showing
30 changed files
with
170 additions
and
291 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#![deny(unused_crate_dependencies)] | ||
#![deny(warnings)] | ||
pub mod client; | ||
#[cfg(feature = "dap")] | ||
pub mod schema; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.