C++ core with working memory pool
[electrum-server.git] / backends / libbitcoin / history1 / __init__.py
index f257a17..25cd9e6 100644 (file)
@@ -5,8 +5,8 @@ import json
 def wrap_finish(handle_finish, ec, result_json):
     handle_finish(ec, json.loads(result_json))
 
-def payment_history(service, chain, txpool, address, finish):
+def payment_history(service, chain, txpool, membuf, address, finish):
     _history.payment_history(service.internal_ptr, chain.internal_ptr,
-                             txpool.internal_ptr, address,
-                             bind(wrap_finish, finish, _1, _2))
+                             txpool.internal_ptr, membuf.internal_ptr,
+                             address, bind(wrap_finish, finish, _1, _2))