diff --git a/src/_zkapauthorizer/_plugin.py b/src/_zkapauthorizer/_plugin.py index e83f3166663e3a9a9e849be57dbc77f458257d3c..e400e87a29308d7daf3466c2f74653108cea169f 100644 --- a/src/_zkapauthorizer/_plugin.py +++ b/src/_zkapauthorizer/_plugin.py @@ -45,6 +45,10 @@ from .resource import ( from_configuration as resource_from_configuration, ) +from .controller import ( + DummyRedeemer, +) + @implementer(IAnnounceableStorageServer) @attr.s class AnnounceableStorageServer(object): @@ -85,4 +89,7 @@ class ZKAPAuthorizer(object): def get_client_resource(self, node_config): - return resource_from_configuration(node_config) + return resource_from_configuration( + node_config, + redeemer=DummyRedeemer(), + )