-
Notifications
You must be signed in to change notification settings - Fork 1
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
b3f1069
commit 75fec4c
Showing
5 changed files
with
86 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
use std::collections::HashMap; | ||
|
||
use async_trait::async_trait; | ||
|
||
use crate::common_deps::CommonDeps; | ||
|
||
use super::Operation; | ||
|
||
pub struct DiscardRequest; | ||
|
||
#[async_trait] | ||
impl Operation for DiscardRequest { | ||
async fn execute(&self, config: HashMap<String, String>) -> Result<(), String> { | ||
let discard_request_info = CommonDeps::discard_request_info(&config)?; | ||
|
||
let tx_hash = CommonDeps::send_and_confirm( | ||
discard_request_info | ||
.proof_marketplace | ||
.discard_request(discard_request_info.ask_id) | ||
.send(), | ||
) | ||
.await?; | ||
|
||
// Print the transaction hash | ||
println!("{}", tx_hash); | ||
|
||
Ok(()) | ||
} | ||
} |
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