Skip to content
This repository has been archived by the owner on Jun 7, 2019. It is now read-only.

Commit

Permalink
Merge pull request #154 from LiskHQ/console-log
Browse files Browse the repository at this point in the history
Lint console statements and remove from test file - Closes #164
  • Loading branch information
willclarktech authored Jul 5, 2017
2 parents 39a8afc + 2def5de commit 7e7aed2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 2 additions & 1 deletion eslint_ecma5.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"no-undef": "error",
"no-unused-vars": ["error", { "vars": "all", "args": "after-used" }],
"strict": ["error", "global"],
"semi": ["error", "always"]
"semi": ["error", "always"],
"no-console": ["error", { "allow": ["error", "info"] }]
},
"env": {
"browser": true,
Expand Down
3 changes: 0 additions & 3 deletions test/transactions/multisignature.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,6 @@ describe('multisignature.js', function () {
var pubKey = lisk.crypto.getPrivateAndPublicKeyFromSecret(secret).publicKey;

(msigTransaction2.requesterPublicKey).should.be.equal(pubKey);

console.log(msigTransaction2);

});


Expand Down

0 comments on commit 7e7aed2

Please sign in to comment.