diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2017-04-25 11:29:46 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2017-06-01 13:15:24 -0700 |
commit | 8b25d2c0ce64d7f8577a0c2e601e505c9f1140bf (patch) | |
tree | f0e2511a6e0aebf0012c209f54574b649651d3b2 /src/txdb.h | |
parent | b2af357f39c7d17ab6ddb2938531155bf90126ec (diff) |
Upgrade from per-tx database to per-txout
Diffstat (limited to 'src/txdb.h')
-rw-r--r-- | src/txdb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/txdb.h b/src/txdb.h index 189094737e..51dc355bba 100644 --- a/src/txdb.h +++ b/src/txdb.h @@ -77,6 +77,8 @@ public: bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override; CCoinsViewCursor *Cursor() const override; + //! Attempt to update from an older database format. Returns whether an error occurred. + bool Upgrade(); size_t EstimateSize() const override; }; |