diff --git a/src/blockchain_processor.py b/src/blockchain_processor.py index 7b9cec35..b1909369 100644 --- a/src/blockchain_processor.py +++ b/src/blockchain_processor.py @@ -304,7 +304,7 @@ def get_unconfirmed_history(self, addr): for tx_hash, delta in self.mempool_hist.get(addr, ()): height = -1 if self.mempool_unconfirmed.get(tx_hash) else 0 fee = self.mempool_fees.get(tx_hash) - hist.append({'tx_hash':tx_hash, 'height':height, 'fee':fee}) + hist.append({'tx_hash':tx_hash, 'height':height, 'fee':fee, 'value':delta}) return hist def get_history(self, addr, cache_only=False):