Browse Source

windows fix

cl-refactor
Marek Kotewicz 10 years ago
committed by debris
parent
commit
6d75a52530
  1. 2
      libethereum/ClientBase.h

2
libethereum/ClientBase.h

@ -176,7 +176,7 @@ protected:
// filters
mutable Mutex x_filtersWatches; ///< Our lock.
std::unordered_map<h256, InstalledFilter> m_filters; ///< The dictionary of filters that are active.
std::unordered_map<h256, h256s> m_specialFilters = {{PendingChangedFilter, {}}, {ChainChangedFilter, {}}};
std::unordered_map<h256, h256s> m_specialFilters = std::unordered_map<h256, std::vector<h256>>{{PendingChangedFilter, {}}, {ChainChangedFilter, {}}};
///< The dictionary of special filters and their additional data
std::map<unsigned, ClientWatch> m_watches; ///< Each and every watch - these reference a filter.
};

Loading…
Cancel
Save