-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
752f92d
commit 984e30a
Showing
8 changed files
with
340 additions
and
538 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,2 +1,16 @@ | ||
pub mod goose; | ||
pub mod shoot; | ||
use crate::config::GatlingConfig; | ||
|
||
use self::shoot::GatlingShooterSetup; | ||
|
||
mod goose; | ||
mod shoot; | ||
|
||
pub async fn shoot(config: GatlingConfig) -> color_eyre::Result<()> { | ||
let mut shooter = GatlingShooterSetup::from_config(config).await?; | ||
shooter.setup().await?; | ||
|
||
goose::erc20(&shooter).await?; | ||
goose::erc721(&shooter).await?; | ||
|
||
Ok(()) | ||
} |
Oops, something went wrong.