-
Notifications
You must be signed in to change notification settings - Fork 5
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
protocol: mempool_get_fee_histogram #5
Comments
As short as possible really. I need help in figuring out how to implement this.
|
On 20 April 2021 22:40:57 CEST, og-ewok ***@***.***> wrote:
New to btc and asyncio, but interested to work on this. How long do
you expect this issue to remain open?
Quote for above comment ^
|
Perhaps this can also be implemented using the https://mempool.space API? |
i'm not sure that the libbitcoin-server api supports what is needed for this. given a tx identifier, we can obtain fee data from the mem/transaction pool. but I don't see a way to get an index of all tx in the pool. the bitcoin core rpc has a method 'getrawmempool' that will return such a list. i believe this is what electrumx is using. am i missing something? https://github.com/libbitcoin/libbitcoin-server/blob/master/src/interface/transaction_pool.cpp |
Hi. I've asked about this in libbitcoin/libbitcoin-server#547 I think you're indeed right, and this functionality may be missing. However, it should be possible to implement it. |
Some kind of implementation is needed. Currently we just return
[[0, 0]]
The text was updated successfully, but these errors were encountered: