File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -101,9 +101,9 @@ class NewCellStorageStat {
101
101
102
102
private:
103
103
const CellUsageTree* usage_tree_;
104
- std::set <vm::Cell::Hash> seen_;
104
+ td::HashSet <vm::Cell::Hash> seen_;
105
105
Stat stat_;
106
- std::set <vm::Cell::Hash> proof_seen_;
106
+ td::HashSet <vm::Cell::Hash> proof_seen_;
107
107
Stat proof_stat_;
108
108
const NewCellStorageStat* parent_{nullptr };
109
109
@@ -117,7 +117,7 @@ struct CellStorageStat {
117
117
struct CellInfo {
118
118
td::uint32 max_merkle_depth = 0 ;
119
119
};
120
- std::map <vm::Cell::Hash, CellInfo> seen;
120
+ td::HashMap <vm::Cell::Hash, CellInfo> seen;
121
121
CellStorageStat () : cells(0 ), bits(0 ), public_cells(0 ) {
122
122
}
123
123
explicit CellStorageStat (unsigned long long limit_cells)
@@ -173,7 +173,7 @@ class ProofStorageStat {
173
173
enum CellStatus {
174
174
c_none = 0 , c_prunned = 1 , c_loaded = 2
175
175
};
176
- std::map <vm::Cell::Hash, CellStatus> cells_;
176
+ td::HashMap <vm::Cell::Hash, CellStatus> cells_;
177
177
td::uint64 proof_size_ = 0 ;
178
178
};
179
179
You can’t perform that action at this time.
0 commit comments