fix: rate limiting

fix: wait longer for invoice
This commit is contained in:
trisua 2025-05-07 21:54:21 -04:00
parent 797231946a
commit aca1a8236c
4 changed files with 21 additions and 5 deletions

View file

@ -59,8 +59,8 @@ async fn main() {
// governor
let governor_config = Arc::new(
GovernorConfigBuilder::default()
.per_millisecond(75)
.burst_size(32)
.per_millisecond(64)
.burst_size(128)
.finish()
.unwrap(),
);