aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoriancoleman <coleman.ian@gmail.com>2017-06-06 14:25:13 +1000
committerGitHub <noreply@github.com>2017-06-06 14:25:13 +1000
commit81f35b5e6643d9ac046ee8f4a5c3b4308ea03ceb (patch)
tree79880eba3952fafd8bbc2dcee2116bf65b6bb09b /src
parent81ee6e893229013d38d3a231ffbadb1e61576ba6 (diff)
parentbbe7f1841cc73e5882bd6e6f4744c0788cfb7f40 (diff)
downloadBIP39-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
Diffstat (limited to 'src')
-rw-r--r--src/js/ripple-util.js2
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
7function convertRipplePriv(priv) { 7function 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