diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-04-13T13·42+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2018-04-13T13·42+0200 |
commit | d34fa2bcc3572fafc893755cee19d97aed7ec649 (patch) | |
tree | 3e26bf914dcf666546316602f2b4e8ac56c4890c /src/libstore/local-store.hh | |
parent | 4fd28bee89a91230ed00fbe842ed51c289f89bd0 (diff) |
Fix #1921
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index 0d6c176595c8..1209a06356f7 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -77,6 +77,8 @@ private: minFree but not much below availAfterGC, then there is no point in starting a new GC. */ uint64_t availAfterGC = std::numeric_limits<uint64_t>::max(); + + std::unique_ptr<PublicKeys> publicKeys; }; Sync<State, std::recursive_mutex> _state; @@ -100,7 +102,7 @@ private: settings.requireSigs, "require-sigs", "whether store paths should have a trusted signature on import"}; - PublicKeys publicKeys; + const PublicKeys & getPublicKeys(); public: |