Skip to content

Commit

Permalink
Use object shorthand for properties (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusU committed Oct 16, 2021
1 parent ace5a2e commit 328c90f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions lib/coins/cbn.js
Expand Up @@ -80,7 +80,7 @@ var regtest = Object.assign({}, {
}, common)

module.exports = {
main: main,
test: test,
regtest: regtest
main,
test,
regtest
}
4 changes: 2 additions & 2 deletions lib/coins/city.js
Expand Up @@ -55,6 +55,6 @@ var test = Object.assign({}, {
}, common)

module.exports = {
main: main,
test: test
main,
test
}
4 changes: 2 additions & 2 deletions lib/coins/dnr.js
Expand Up @@ -41,6 +41,6 @@ var test = Object.assign({}, {
}, common)

module.exports = {
main: main,
test: test
main,
test
}
4 changes: 2 additions & 2 deletions lib/coins/x42.js
Expand Up @@ -53,6 +53,6 @@ var test = Object.assign({}, {
}, common)

module.exports = {
main: main,
test: test
main,
test
}

0 comments on commit 328c90f

Please sign in to comment.