document get_new_blocks_feed

This commit is contained in:
Scott Sadler 2017-05-22 14:22:12 +02:00
parent 99b4777766
commit ccb4bfd244

View File

@ -288,4 +288,14 @@ def get_txids_filtered(connection, asset_id, operation=None):
@singledispatch
def get_new_blocks_feed(connection, start_block_id):
"""
Return a generator that yields change events of the blocks feed
Args:
start_block_id (str): ID of block to resume from
Returns:
Generator of change events
"""
raise NotImplementedError