From 23fd05947d473cb7bc2050bc03c8fe9cb4ef6b7d Mon Sep 17 00:00:00 2001 From: 4tochka Date: Sun, 5 May 2019 23:14:22 +0400 Subject: [PATCH] connector --- pybtc/connector.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pybtc/connector.py b/pybtc/connector.py index d14f965..8213d01 100644 --- a/pybtc/connector.py +++ b/pybtc/connector.py @@ -590,8 +590,8 @@ class Connector: if not tx["coinbase"]: if block_height is not None: await self.wait_block_dependences(tx) - # if self.utxo: - # stxo = await self.get_stxo(tx, block_height, block_index) + if self.utxo: + stxo = await self.get_stxo(tx, block_height, block_index) if self.tx_handler and not self.cache_loading: await self.tx_handler(tx, stxo, block_time, block_height, block_index)