I got this error just while using the Electrum-Dash.
EDIT: I'll try to elaborate on it and look for some fixes to it, but don't promise anything.
Didn't try this tool yet, since I thought it's related to MN operations. The problem I have is to retrieve the accounts to Electrum and do regular spending. If DMT have some module for KeepKey, I'll try to verify if it works fine and let you know, so the working code can be copied from DMT to Electrum.did u try it with DMT App ? (no electrum but keepkey direct ) ?
Didn't try this tool yet, since I thought it's related to MN operations. The problem I have is to retrieve the accounts to Electrum and do regular spending. If DMT have some module for KeepKey, I'll try to verify if it works fine and let you know, so the working code can be copied from DMT to Electrum.
def hid_transport(self, pair):
from keepkeylib.transport_hid import HidTransport
return HidTransport(pair)
def bridge_transport(self, d):
raise NotImplementedError('')
Seems like I found the issue and I'm happy to provide a fix for it. It works for me at least. Because I cannot create new issue in the offficial GitHub for this project (https://github.com/dashpay/electrum-dash), I'm providing the fix here. I hope somebody can commit the solution to the repository and rebuild the sources:
In plugins/keepkey/keepkey.py there are missing lines at the end of the file, within KeepKeyPlugin class:
Code:def hid_transport(self, pair): from keepkeylib.transport_hid import HidTransport return HidTransport(pair) def bridge_transport(self, d): raise NotImplementedError('')
Please let me know if somebody will deal with it, or I can contribute somehow.
Edit: Seems like the code is already there, but the binaries for Windows don't have the fragment I've mentioned, so it just have to be recompiled from sources.
Eeeeks... No idea why issues were not enabled... Fixed!... Because I cannot create new issue in the offficial GitHub for this project (https://github.com/dashpay/electrum-dash), I'm providing the fix here. ...
Seems like I found the issue and I'm happy to provide a fix for it. It works for me at least. Because I cannot create new issue in the offficial GitHub for this project (https://github.com/dashpay/electrum-dash), I'm providing the fix here. I hope somebody can commit the solution to the repository and rebuild the sources:
In plugins/keepkey/keepkey.py there are missing lines at the end of the file, within KeepKeyPlugin class:
Code:def hid_transport(self, pair): from keepkeylib.transport_hid import HidTransport return HidTransport(pair) def bridge_transport(self, d): raise NotImplementedError('')
Please let me know if somebody will deal with it, or I can contribute somehow.
Edit: Seems like the code is already there, but the binaries for Windows don't have the fragment I've mentioned, so it just have to be recompiled from sources.