-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--fee-rate
not respected
#1432
Comments
This is not actionable at the moment, because we haven't been able to reproduce it. Please let us know if you run into this! |
This is the same underlying problem as #1597, we don't pass a fee to the send RPC command. Easy fix:
|
NB `wallet send <AMOUNT>` still uses fee-rate estimation from `bitcoind`. See #1432 for more details.
I believe this is now fixed. |
In trying to get to the bottom of something, I came across this thread. Not sure if I did something wrong since I am fairly new at this, but I specified a fee-rate of 16 and it used 16 for the commit transaction, but went ahead and spent the rest of my UTXO in the reveal bringing the fee rate to 18.8 for the reveal. The command I ran:
Commit & reveal transactions: https://mempool.space/address/bc1pp3ytujrdsv72aak3rytme3x90awujaz4rq8442msf5wdx5qzsjzqqzhs8a When I do the math, I should have gotten at least something back (in addition to the ordinal with the postage), but more specifically about 533 satoshis back. Instead, all I got was the ordinal with postage (10000 sats).
So it did report the total_fees correctly in my case as well... interesting! |
@papiro Thanks for the report! Can you open a separate issue? I think that this is working as intended. I believe that either |
Ooof, you're totally right. After so much research and thinking, I suspected something like that was the reason. That is great news! I thought something was broken or there was a bug or something, but when I increase the outputs to 2 in this calculator it indeed would have cost more than the 15000 I put in :). Thanks a lot! |
Nice! You bet! |
…nals#1755) NB `wallet send <AMOUNT>` still uses fee-rate estimation from `bitcoind`. See ordinals#1432 for more details.
We had a user report that the
--fee-rate
option was not being respected.The command was:
ord wallet inscribe --fee-rate 6.0 INSCRIPTION.png
Transaction: 7acd66e6f673e82999cedd37de5a4cbe41f217ae6f1dbf26a1ddfd6ef5488051
Which paid a fee rate of 16.0 sats/vB
I saw a screenshot of the inscribe command output, and it showed fee of 7392. The commit and reveal transactions paid 4928 + 2464 = 7392, so
ord wallet
was reporting the correct feerate.The text was updated successfully, but these errors were encountered: