We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The IONVerifier implementation of fetch_bundle() calls async methods to i) resolve the DID and ii) locate the relevant Bitcoin transaction:
IONVerifier
fetch_bundle()
pub async fn fetch_bundle(&self, did: &str) -> Result<(), VerifierError> { let (did_doc, did_doc_meta) = self.resolve_did(did).await?; let (block_hash, tx_index) = self.locate_transaction(did).await?; ...
Currently these calls are made in sequence, but we would like to have the two futures run concurrently, e.g. by using the futures::join! macro.
futures::join!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
IONVerifier
implementation offetch_bundle()
calls async methods to i) resolve the DID and ii) locate the relevant Bitcoin transaction:Currently these calls are made in sequence, but we would like to have the two futures run concurrently, e.g. by using the
futures::join!
macro.The text was updated successfully, but these errors were encountered: