diff options
author | iancoleman <coleman.ian@gmail.com> | 2017-06-06 14:25:13 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-06 14:25:13 +1000 |
commit | 81f35b5e6643d9ac046ee8f4a5c3b4308ea03ceb (patch) | |
tree | 79880eba3952fafd8bbc2dcee2116bf65b6bb09b | |
parent | 81ee6e893229013d38d3a231ffbadb1e61576ba6 (diff) | |
parent | bbe7f1841cc73e5882bd6e6f4744c0788cfb7f40 (diff) | |
download | BIP39-81f35b5e6643d9ac046ee8f4a5c3b4308ea03ceb.tar.gz BIP39-81f35b5e6643d9ac046ee8f4a5c3b4308ea03ceb.tar.zst BIP39-81f35b5e6643d9ac046ee8f4a5c3b4308ea03ceb.zip |
Merge pull request #71 from LedgerHQ/master
Deleting the remaining checksum from the Ripple private key
-rw-r--r-- | src/js/ripple-util.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/ripple-util.js b/src/js/ripple-util.js index 8b287fb..8184a76 100644 --- a/src/js/ripple-util.js +++ b/src/js/ripple-util.js | |||
@@ -5,6 +5,6 @@ function convertRippleAdrr(address) { | |||
5 | } | 5 | } |
6 | 6 | ||
7 | function convertRipplePriv(priv) { | 7 | function convertRipplePriv(priv) { |
8 | return window.basex('123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz').decode(priv).toString("hex").slice(2) | 8 | return window.basex('123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz').decode(priv).toString("hex").slice(2,66) |
9 | } | 9 | } |
10 | 10 | ||