Skip to content

Commit

Permalink
clean up unnecesary log comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroPointThree17 committed Apr 24, 2022
1 parent df47e11 commit ae2cbd4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ export async function getUSB(setTransport, setUsbConn, setDeviceName) {

String.prototype.hexDecode = function() {

console.log("decoding hex: " + this)
// console.log("decoding hex: " + this)
if(this.startsWith("01")){
return "<This message is encrypted. Decrypting messages on this wallet is currently not implemented>"
} else if(this.startsWith("3030")){
Expand All @@ -314,7 +314,7 @@ String.prototype.hexDecode = function() {
}

try{
return decodeURIComponent(escape(s))
return decodeURIComponent(escape(s))
} catch(e){
return hexyjs.hexToStr(this.slice(4));
}
Expand Down
1 change: 1 addition & 0 deletions src/screens/Send.js
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,7 @@ function getBalances(gatewayIdx, defaultRri, firstTime, setGettingBalances, sour
// sourceXrdAddr = "rdx1qsplgax6sgeqqflwsalad3u7pds83wr892ayrxrhs7r3e2vc9m3dejq6sapew"
// sourceXrdAddr = "rdx1qspxwq6ejym0hqvtwqz6rkmfrxgegjf6y0mz63pveks7klunlgcdswgmrj34g"
// sourceXrdAddr = "rdx1qspa05gfcxux87nlw7rrky86pptmwc9hsev73retl57tykgs9llwqrswl9jrg"
// sourceXrdAddr = "rdx1qspz0gxzprhegk8dsf8u5zknmpf68f5g8c4dhlex0n3uypky3f5z6dqsxwleh"

useEffect( () => {
AsyncStorage.getItem('@gatewayIdx').then( (gatewayIdx) => {
Expand Down

0 comments on commit ae2cbd4

Please sign in to comment.