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
It is not possible to use sendrawtransaction with the current RPC client (0.21) and Bitcoin Core (0.20, believe this applies to 0.19) as well. This regression was introduced in #1484.
The underlying issue is that Bitcoin Core expects two arguments to the RPC call, and the current implementation leads to three.
I tried to fix this on my side by adding two different structs, one for pre- and post 0.19. I then ran into a blocker, where we can only register one struct per command.
It seems like this was attempted fixed in #1415. I'd say that this is a pretty high priority issue. I can work around it for now by using a fork, but that's not ideal.
The text was updated successfully, but these errors were encountered:
It is not possible to use
sendrawtransaction
with the current RPC client (0.21) and Bitcoin Core (0.20, believe this applies to 0.19) as well. This regression was introduced in #1484.The underlying issue is that Bitcoin Core expects two arguments to the RPC call, and the current implementation leads to three.
I tried to fix this on my side by adding two different structs, one for pre- and post 0.19. I then ran into a blocker, where we can only register one struct per command.
It seems like this was attempted fixed in #1415. I'd say that this is a pretty high priority issue. I can work around it for now by using a fork, but that's not ideal.
The text was updated successfully, but these errors were encountered: