1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-09 12:06:01 +01:00

BinaryCacheStore: Make the signing key a parameter

This commit is contained in:
Eelco Dolstra 2016-04-29 16:47:20 +02:00
parent f6aee2f477
commit 8e065c6b3e
8 changed files with 21 additions and 46 deletions

View file

@ -11,8 +11,8 @@ class S3BinaryCacheStore : public BinaryCacheStore
protected:
S3BinaryCacheStore(std::shared_ptr<Store> localStore,
const Path & secretKeyFile)
: BinaryCacheStore(localStore, secretKeyFile)
const StoreParams & params)
: BinaryCacheStore(localStore, params)
{ }
public: