tAdd stub for blockchain.estimatefee - obelisk - Electrum server using libbitcoin as its backend HTML git clone https://git.parazyd.org/obelisk DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit 49cd87e1ba0f4f05de73c9c73d4f0eb7546aad87 DIR parent e51233f13b35509c929e35b4593e531bbb5464b6 HTML Author: parazyd <parazyd@dyne.org> Date: Wed, 7 Apr 2021 18:16:19 +0200 Add stub for blockchain.estimatefee Diffstat: M electrumobelisk/protocol.py | 2 ++ 1 file changed, 2 insertions(+), 0 deletions(-) --- DIR diff --git a/electrumobelisk/protocol.py b/electrumobelisk/protocol.py t@@ -200,6 +200,8 @@ class ElectrumProtocol(asyncio.Protocol): # pylint: disable=R0904 async def blockchain_estimatefee(self, query): self.log.debug("query: %s", query) + # Help wanted + return {"result": -1} async def blockchain_headers_subscribe(self, query): self.log.debug("query: %s", query)