remove sender sig check
This commit is contained in:
parent
36fcd6882f
commit
91829f8410
5 changed files with 90 additions and 63 deletions
|
|
@ -285,6 +285,7 @@ PublicKeyRing.prototype.getForPath = function(path) {
|
|||
};
|
||||
|
||||
PublicKeyRing.prototype.getForPaths = function(paths) {
|
||||
preconditions.checkArgument(paths);
|
||||
return paths.map(this.getForPath.bind(this));
|
||||
};
|
||||
|
||||
|
|
@ -299,6 +300,8 @@ PublicKeyRing.prototype.forPaths = function(paths) {
|
|||
|
||||
// returns pubkey -> copayerId.
|
||||
PublicKeyRing.prototype.copayersForPubkeys = function(pubkeys, paths) {
|
||||
preconditions.checkArgument(pubkeys);
|
||||
preconditions.checkArgument(paths);
|
||||
|
||||
var inKeyMap = {}, ret = {};
|
||||
for(var i in pubkeys ){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue