Skip to content

Commit

Permalink
chore: add quick param
Browse files Browse the repository at this point in the history
  • Loading branch information
thuchoskym committed Aug 13, 2024
1 parent a888531 commit 08efd72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async fn run_cast_command(chain: ChainId, tx: String, quick: u64) -> Result<Stri
}
}

#[get("/run_cast/{chain_id}/{tx}")]
#[get("/run_cast/{chain_id}/{tx}/{quick}")]
async fn cast_command_handler(path: web::Path<(u64, String, u64)>) -> impl Responder {
let (chain_id, tx, quick) = path.into_inner();

Expand Down

0 comments on commit 08efd72

Please sign in to comment.