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

Fix: double slash in GET transactions #45

Merged
merged 2 commits into from
Oct 4, 2024
Merged

Conversation

anna-carroll
Copy link
Contributor

No description provided.

@anna-carroll anna-carroll self-assigned this Oct 3, 2024
@@ -42,7 +42,7 @@ impl TxPoller {
/// unique transactions that haven't been seen before are sent into the builder pipeline.
pub async fn check_tx_pool(&mut self) -> Result<Vec<TxEnvelope>, Error> {
let mut unique: Vec<TxEnvelope> = Vec::new();
let result = self.client.get(self.config.tx_pool_url.to_string() + "/get").send().await?;
let result = self.client.get(self.config.tx_pool_url.to_string() + "get").send().await?;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was this actually causing an issue with the slash?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was what was causing the originally observed bug, yes

@anna-carroll anna-carroll merged commit 8826a23 into main Oct 4, 2024
5 checks passed
@anna-carroll anna-carroll deleted the anna/debug-parsing branch October 4, 2024 16:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants