-
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.
feat!: make functions return Result and implement Node Killer (#1067)
Refactored functions to return Result for better error handling. + launch_provider_and_get_wallet() + launch_custom_provider_and_get_wallets() + setup_test_provider() + setup_test_client() I've implemented FuelService and added support for the fuel_core_services::Service trait. This allows us to have finer control over the behavior of FuelNode; ```rust pub struct FuelService { #[cfg(feature = "fuel-core-lib")] service: CoreFuelService, #[cfg(not(feature = "fuel-core-lib"))] service: BinFuelService, bound_address: SocketAddr, } ``` Co-authored-by: Ahmed Sagdati <[email protected]> Co-authored-by: hal3e <[email protected]>
- Loading branch information
1 parent
d7d15c6
commit 27f43c0
Showing
34 changed files
with
749 additions
and
687 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
Oops, something went wrong.