diff --git a/wallet/src/controller.rs b/wallet/src/controller.rs index 1277e7450..99e358370 100644 --- a/wallet/src/controller.rs +++ b/wallet/src/controller.rs @@ -627,6 +627,10 @@ where ok(create_error_response(e)) })) } + + fn options(&self, _req: Request) -> ResponseFuture { + Box::new(ok(create_ok_response("{}"))) + } } // Utility to serialize a struct into JSON and produce a sensible Response