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

Commit

Permalink
Geth plugin changes (#397)
Browse files Browse the repository at this point in the history
* fix: disables USB interfaces by default, to prevent further trouble

* fix: cleans up the architecture list
  • Loading branch information
evertonfraga authored Jul 31, 2019
1 parent 7f6efc4 commit 428e998
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion ethereum_clients/client_plugins/geth.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = {
filter: {
name: {
includes: [platform],
excludes: ['unstable', 'alltools', 'swarm']
excludes: ['unstable', 'alltools', 'swarm', 'mips', 'arm']
}
},
prefix: `geth-${platform}`,
Expand Down Expand Up @@ -157,6 +157,15 @@ module.exports = {
{ value: 'true', flag: '--graphql', label: 'Yes (v1.9.0 and later)' },
{ value: 'false', flag: '', label: 'No' }
]
},
{
id: 'usb',
label: 'Enable USB (hardware wallets)',
default: 'false',
options: [
{ value: 'false', flag: '--nousb', label: 'No' },
{ value: 'true', flag: '', label: 'Yes' }
]
}
]
}

0 comments on commit 428e998

Please sign in to comment.