File tree Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,6 @@ class CCoinsViewCursor
142
142
143
143
virtual bool GetKey (COutPoint &key) const = 0;
144
144
virtual bool GetValue (Coin &coin) const = 0;
145
- virtual unsigned int GetValueSize () const = 0;
146
145
147
146
virtual bool Valid () const = 0;
148
147
virtual void Next () = 0;
Original file line number Diff line number Diff line change @@ -166,11 +166,6 @@ class CDBIterator
166
166
}
167
167
return true ;
168
168
}
169
-
170
- unsigned int GetValueSize () {
171
- return piter->value ().size ();
172
- }
173
-
174
169
};
175
170
176
171
class CDBWrapper
Original file line number Diff line number Diff line change @@ -211,7 +211,6 @@ class CCoinsViewDBCursor: public CCoinsViewCursor
211
211
212
212
bool GetKey (COutPoint &key) const override ;
213
213
bool GetValue (Coin &coin) const override ;
214
- unsigned int GetValueSize () const override ;
215
214
216
215
bool Valid () const override ;
217
216
void Next () override ;
@@ -257,11 +256,6 @@ bool CCoinsViewDBCursor::GetValue(Coin &coin) const
257
256
return pcursor->GetValue (coin);
258
257
}
259
258
260
- unsigned int CCoinsViewDBCursor::GetValueSize () const
261
- {
262
- return pcursor->GetValueSize ();
263
- }
264
-
265
259
bool CCoinsViewDBCursor::Valid () const
266
260
{
267
261
return keyTmp.first == DB_COIN;
You can’t perform that action at this time.
0 commit comments