feat(@embark/plugins/geth): bump min supported geth version from 1.8.14 to 1.9.7

This is not a breaking change because Embark doesn't strictly enforce the
mininum version, it only prints a warning.
This commit is contained in:
Michael Bradley, Jr 2019-11-07 13:17:20 -06:00 committed by Michael Bradley
parent 4ee900480d
commit 25d0510d5b
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ const constants = require('embark-core/constants');
const DEFAULTS = {
"BIN": "geth",
"VERSIONS_SUPPORTED": ">=1.8.14",
"VERSIONS_SUPPORTED": ">=1.9.7",
"NETWORK_TYPE": "custom",
"NETWORK_ID": 1337,
"RPC_API": ['eth', 'web3', 'net', 'debug', 'personal'],

View File

@ -6,7 +6,7 @@ const constants = require('embark-core/constants');
const DEFAULTS = {
"BIN": "geth",
"VERSIONS_SUPPORTED": ">=1.8.14",
"VERSIONS_SUPPORTED": ">=1.9.7",
"NETWORK_TYPE": "custom",
"NETWORK_ID": 1337,
"RPC_API": ['eth', 'web3', 'net', 'debug', 'personal'],