Browse Source

Merge pull request #7977 from JamieDriver/update_jade_api

jade: update Jade api to 0.1.37
patch-4
ghost43 2 years ago
committed by GitHub
parent
commit
6bdabb8579
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      electrum/plugins/jade/jadepy/README.md
  2. 2
      electrum/plugins/jade/jadepy/__init__.py
  3. 1355
      electrum/plugins/jade/jadepy/jade.py

8
electrum/plugins/jade/jadepy/README.md

@ -2,14 +2,10 @@
This is a slightly modified version of the official [Jade](https://github.com/Blockstream/Jade) python library.
This modified version was made from tag [0.1.32](https://github.com/Blockstream/Jade/releases/tag/0.1.32).
This modified version was made from tag [0.1.37](https://github.com/Blockstream/Jade/releases/tag/0.1.37).
Intention is to fold these modifications back into Jade repo, for future api release.
## Changes
- Removed BLE module, reducing transitive dependencies
- Comment create_ble() functions
- More robust 'read_cbor_respose()' function - backported from jade master
- Tweak jade_serial.py to unset RTS line - backported from jade master
- _http_request() function removed, so cannot be used as unintentional fallback
- _http_request() function removed, so cannot be used as unintentional fallback

2
electrum/plugins/jade/jadepy/__init__.py

@ -1,4 +1,4 @@
from .jade import JadeAPI
from .jade_error import JadeError
__version__ = "0.0.1"
__version__ = "0.2.0"

1355
electrum/plugins/jade/jadepy/jade.py

File diff suppressed because it is too large
Loading…
Cancel
Save