diff options
Diffstat (limited to 'src/device')
-rw-r--r-- | src/device/device.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/device.hpp b/src/device/device.hpp index 3d9ea0449..ecc4849bf 100644 --- a/src/device/device.hpp +++ b/src/device/device.hpp @@ -79,7 +79,7 @@ namespace hw { virtual void on_button_request(uint64_t code=0) {} virtual void on_button_pressed() {} virtual boost::optional<epee::wipeable_string> on_pin_request() { return boost::none; } - virtual boost::optional<epee::wipeable_string> on_passphrase_request(bool on_device) { return boost::none; } + virtual boost::optional<epee::wipeable_string> on_passphrase_request(bool & on_device) { on_device = true; return boost::none; } virtual void on_progress(const device_progress& event) {} virtual ~i_device_callback() = default; }; |