dont include fees

This commit is contained in:
Shroominic
2025-08-13 17:11:36 -03:00
parent 07257d5682
commit 558d442cd1
+2 -2
View File
@@ -64,8 +64,8 @@ async def send(amount: int, unit: str, mint_url: str | None = None) -> tuple[int
await wallet.load_proofs()
proofs = wallet._get_proofs_per_keyset(wallet.proofs)[wallet.keyset_id]
send_proofs, fees = await wallet.select_to_send(
proofs, amount, set_reserved=True, include_fees=True
send_proofs, _ = await wallet.select_to_send(
proofs, amount, set_reserved=True, include_fees=False
)
token = await wallet.serialize_proofs(
send_proofs, include_dleq=False, legacy=False, memo=None