Skip to content
New issue

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

feat: rm "Error while parsing account" logs #84

Merged
merged 4 commits into from
Jan 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
comments
  • Loading branch information
RequescoS committed Jan 24, 2024
commit 7b28eca31cfb1294388302a231d45bccfcb8464c
7 changes: 4 additions & 3 deletions usecase/src/signature_fetcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ where
info!("Start fetching signatures...");
let mut all_signatures = match self
.rpc
.get_signatures_by_address(signature, program_id)
.get_signatures_by_address(signature.clone(), program_id)
.await
.map_err(|e| StorageError::Common(e.to_string()))
{
Expand All @@ -76,8 +76,9 @@ where
return Ok(());
}
info!(
"Fetched {} signatures since first persisted signature",
&all_signatures.len()
"Fetched {} signatures since first persisted signature {}",
&all_signatures.len(),
signature.signature
);

// we've got a list of signatures, potentially a huge one (10s of millions)
Expand Down
Loading