You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to pay fee from transaction and not the whole amount of available currency?
For instance, when you send 0.01 BTC you pay a fee from your wallet, but I want to pay fee from this exact amount and the client will receive 0.01 - fee BTC.
How can I do this?
The text was updated successfully, but these errors were encountered:
Idea: attempt to calculate transaction size, then get a fee estimate (satoshis per byte) using get_fee(fast=True). After that you can use tx size + fee per byte to guesstimate the sum, which you need to add to the total. Of course this spergtech even after 13-14 years has no easy way to calculate transaction size.
@ofek
Is it possible to pay fee from transaction and not the whole amount of available currency?
For instance, when you send
0.01
BTC you pay a fee from your wallet, but I want to pay fee from this exact amount and the client will receive0.01 - fee
BTC.How can I do this?
The text was updated successfully, but these errors were encountered: