Andrew Tropin

Results 66 comments of Andrew Tropin

>> 1000 GEL -> 332 EUR, repay with 33 EUR -> the total balance becomes 299, >> which is wrong. > > Unlike ledger Paisa doesn't keep track of multiple...

Ok, the issue is not related to lot prices. It seems the reporting itself doesn't behave. I made a simplier reproducer: ``` P 2024-06-20 EUR 3.0103794 GEL 2024-06-25 Friend payed...

@ijprest Yes, can confirm, using www subdomain also works for me. Can we add automatic redirect to it? Could be useful for people, who are not aware of this ticket....

It affects [guile-ares-rs](https://git.sr.ht/~abcdw/guile-ares-rs/), when using with Guix or other code, dealing with non-blocking sockets, because evaluation thread is get spawned from fibers handling incomming nREPL requests: https://todo.sr.ht/~abcdw/tickets/7

It is somehow related to dynamic-state, if I try to create a socket in dynamic state captured before fibers setup, it works well: ```scheme (define-public (create-socket-in-thread-in-fiber) (let ((ds (current-dynamic-state))) (run-fibers...

@emixa-d you are right. Setting them solves the issue (tried both options: around new thread and around create socket). The following snippet of code produces the right result (Connection refused):...