From 04ea2f62e106d39a9aa6358ad0d7b89ace284df4 Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Wed, 29 Apr 2015 12:11:29 -0300 Subject: [PATCH] fix typo --- README.md | 2 +- lib/server.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a4cd8d8..ffa67b9 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ Required Arguments: * name: Copayer Name * xPubKey - Extended Public Key for this copayer. * requestPubKey - Public Key used to check requests from this copayer. - * copayerSignature - Signature sed by other copayers to verify the that the copayer joining knows the wallet secret. + * copayerSignature - Signature used by other copayers to verify that the copayer joining knows the wallet secret. Returns: * copayerId: Assigned ID of the copayer (to be used on x-identity header) diff --git a/lib/server.js b/lib/server.js index 136f3b6..99aa833 100644 --- a/lib/server.js +++ b/lib/server.js @@ -214,7 +214,7 @@ WalletService.prototype.getWallet = function(opts, cb) { * @param {string} opts.name - The copayer name. * @param {string} opts.xPubKey - Extended Public Key for this copayer. * @param {string} opts.requestPubKey - Public Key used to check requests from this copayer. - * @param {string} opts.copayerSignature - S(name|xPubKey|requestPubKey). Used by other copayers to verify the that the copayer joining knows the wallet secret. + * @param {string} opts.copayerSignature - S(name|xPubKey|requestPubKey). Used by other copayers to verify that the copayer joining knows the wallet secret. */ WalletService.prototype.replaceTemporaryRequestKey = function(opts, cb) { var self = this;