Skip to content

Commit cac03b6

Browse files
rmeissnerholgerd77
authored andcommitted
Fix lint
1 parent f76bad5 commit cac03b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/runCall.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ module.exports = function (opts, cb) {
8686
}
8787
}
8888

89-
function checkAccountState(address, next, done) {
89+
function checkAccountState (address, next, done) {
9090
stateManager.getAccount(address, function (err, account) {
9191
if (err) {
9292
done(err)
@@ -102,7 +102,7 @@ module.exports = function (opts, cb) {
102102
})
103103
}
104104

105-
function setupNewContract(address, done) {
105+
function setupNewContract (address, done) {
106106
stateManager.clearContractStorage(address, function (err) {
107107
if (err) {
108108
done(err)

0 commit comments

Comments
 (0)