summaryrefslogtreecommitdiff
path: root/src/storage.h
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2020-01-11 16:13:40 +0100
committerRoman Smrž <roman.smrz@seznam.cz>2020-01-11 16:13:40 +0100
commitec402bfaa90cdb52276f5ccc2525e799cb4419d7 (patch)
tree1e0c6db70894bbcd45f5d23b7dff498b3feb6c97 /src/storage.h
parent7d403431e354c4a24d7dfdbef3a39ab7297ae7b5 (diff)
Request missing data from network
Diffstat (limited to 'src/storage.h')
-rw-r--r--src/storage.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/storage.h b/src/storage.h
index 9e22a4a..86dc48f 100644
--- a/src/storage.h
+++ b/src/storage.h
@@ -102,6 +102,7 @@ struct Storage::Priv
{
shared_ptr<StorageBackend> backend;
+ Digest storeBytes(const vector<uint8_t> &) const;
optional<vector<uint8_t>> loadBytes(const Digest & digest) const;
template<class S>