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

Commit

Permalink
feat: introduces required flags for parity (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolovim committed Aug 29, 2019
1 parent bb2be70 commit a5b155a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ethereum_clients/client_plugins/parity.js
Expand Up @@ -63,6 +63,18 @@ module.exports = {
label: 'IPC Path',
default: IPC_PATH,
flag: '--ipc-path %s'
},
{
required: true,
id: 'noDownload',
default: 'required',
options: [{ value: 'required', flag: '--no-download' }]
},
{
required: true,
id: 'forceDirect',
default: 'required',
options: [{ value: 'required', flag: '--force-direct' }]
}
],
about: {
Expand Down

0 comments on commit a5b155a

Please sign in to comment.