Skip to content

Commit 8138c1a

Browse files
committed
shorten closure
1 parent 0b7cefd commit 8138c1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/bitcore-lib/lib/transaction/input/multisig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ MultiSigInput.prototype._updateScript = function() {
121121

122122
MultiSigInput.prototype._createSignatures = function() {
123123
return _.map(
124-
this.signatures.filter(signature => { return !_.isUndefined(signature); }),
124+
this.signatures.filter(signature => !_.isUndefined(signature)),
125125
// Future signature types may need refactor of toDER
126126
function(signature) {
127127
return BufferUtil.concat([

0 commit comments

Comments
 (0)