Aaron McDaid

Results 6 issues of Aaron McDaid

_WARNING_ I'm a n00b to Rust, so this is likely incorrect! Please review carefully, and apologies if this is incorrect 😀. While closures can capture some environment by moving, it's...

Maybe I've reinvented the wheel, but as an exercise here is an implemention of the State monad (`state.rkt`) with the relevant `get`, `put` and `modify` operations. Also, based on that,...

The test ensures that the state goes from UNPAID -> PAID -> ISSUE Sometimes though, there is duplication and the test fails: UNPAID -> UNPAID -> PAID -> PAID ->...

*Update: 2025-09-21: managed to add a few tests, by adding a secondary test mint* This is a PR to implement #671: _Feature request: WALLET_MAX_FEE_PPK flag to avoid overpaying fees_ This...

question
wallet
tests
ready

Sometimes it fails with the following error: ``` # poetry run pytest tests/wallet/test_wallet_subscription.py::test_wallet_subscription_mint -v =============== short test summary info ===================== FAILED tests/wallet/test_wallet_subscription.py::test_wallet_subscription_mint - AssertionError: assert 5 == 3 =============== 1...

As was requested in Issue #710 , this PR adds a `proofs` command to the wallet to list all the proofs in the wallet ``` Usage: cashu proofs [OPTIONS] List...