http/client: lint.

This commit is contained in:
Christopher Jeffrey 2017-08-20 14:35:42 -07:00
parent 6c8c18f2a0
commit c54ba4c5ab
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -6,6 +6,7 @@
*/
'use strict';
const assert = require('assert');
const Network = require('../protocol/network');
const AsyncObject = require('../utils/asyncobject');
@ -493,7 +494,7 @@ HTTPClient.prototype.getWallets = function getWallets() {
*/
HTTPClient.prototype.createWallet = function createWallet(options) {
assert(options.id, 'Must pass an id parameter')
assert(options.id, 'Must pass an id parameter');
return this._put(`/wallet/${options.id}`, options);
};