Skip to content

Commit

Permalink
fix: encode legacy budget as string
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Nov 22, 2024
1 parent 6236073 commit 83d6cd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ pub fn legacy_messages(
"response_time_ms": client_query.response_time_ms,
"request_bytes": client_query.request_bytes,
"response_bytes": client_query.response_bytes,
"budget": 40e-6_f32,
"budget": 40e-6_f32.to_string(),
"query_count": 1,
"fee": client_query.indexer_queries.iter().map(|i| i.fee_grt).sum::<f64>() as f32,
"fee_usd": client_query.total_fees_usd as f32,
Expand Down

0 comments on commit 83d6cd8

Please sign in to comment.