Skip to content
This repository has been archived by the owner on Feb 12, 2021. It is now read-only.

Commit

Permalink
Revert "fix: geth flag pattern (#238)" (#244)
Browse files Browse the repository at this point in the history
This reverts commit f117da0.
  • Loading branch information
wolovim authored and evertonfraga committed Jun 5, 2019
1 parent f900214 commit aeb678c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ethereum_clients/client_plugins/geth.js
Expand Up @@ -67,7 +67,7 @@ module.exports = {
id: 'dataDir',
default: dataDir,
label: 'Data Directory',
flag: '--datadir="%s"',
flag: '--datadir %s',
type: 'path'
},
{
Expand Down Expand Up @@ -95,13 +95,13 @@ module.exports = {
default: 'light',
label: 'Sync Mode',
options: ['fast', 'full', 'light'],
flag: '--syncmode=%s'
flag: '--syncmode %s'
},
{
id: 'cache',
default: '2048',
label: 'Cache',
flag: '--cache=%s'
flag: '--cache %s'
}
]
}

0 comments on commit aeb678c

Please sign in to comment.