From 7be214325e3ef390f87907d2c606e2ed52ebc1ab Mon Sep 17 00:00:00 2001 From: Larry Date: Sat, 11 Nov 2017 10:46:20 -0500 Subject: [PATCH] AddressIndex --- src/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index cf854719e..ab49d70e7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2251,6 +2251,10 @@ bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pin vPos.reserve(block.vtx.size()); blockundo.vtxundo.reserve(block.vtx.size() - 1); + std::vector > addressIndex; + std::vector > addressUnspentIndex; + std::vector > spentIndex; + // Construct the incremental merkle tree at the current // block position, auto old_tree_root = view.GetBestAnchor();