Recover from empty phrase in dev mode (#5698)

* Add dev chain to isTest

* Fix signer

* Fix no condfition transactions

* Fix case : old parity

* Fix propTypes.
This commit is contained in:
Nicolas Gotchac
2017-05-30 19:28:50 +02:00
committed by Gav Wood
parent e6a31e7543
commit c2c7231cad
4 changed files with 65 additions and 8 deletions

View File

@@ -254,9 +254,10 @@ export default class Status {
.all(statusPromises)
.then(([nodeKind, netPeers, clientVersion, netVersion, netChain]) => {
const isTest = [
'2', // morden
'3', // ropsten
'42' // kovan
'2', // morden
'3', // ropsten,
'17', // devchain
'42' // kovan
].includes(netVersion);
const nodeKindFull = nodeKind &&