Skip to content

Commit

Permalink
Merge pull request #22 from petko-petkov-jelurida/master
Browse files Browse the repository at this point in the history
Fixed typos
  • Loading branch information
mrv777 authored Feb 22, 2023
2 parents 62f7acb + 6ff33ae commit 20262ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/account.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function verifyTransactionBytes(byteArray, requestType, data, publicKey) {
var data_raddress = rsConvert(data.recipient)['accountRS'];
if (
transaction_raddress.substring(transaction_raddress.indexOf("-")) !==
data_raddress.substring(data.recipient.indexOf("-"))
data_raddress.substring(data_raddress.indexOf("-"))
) {
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion util/curve25519_.js
Original file line number Diff line number Diff line change
Expand Up @@ -1173,4 +1173,4 @@ var curve25519_verify = function (Y, v, h, P) {
curve25519_fillByteArray(YY, Y);
};

export default { curve25519_ };
export default curve25519_ ;

0 comments on commit 20262ab

Please sign in to comment.