Skip to content

Commit

Permalink
Merge pull request #196 from poanetwork/use-chainId-instead-of-networkId
Browse files Browse the repository at this point in the history
Use chainId instead of networkId
  • Loading branch information
akolotov committed Mar 27, 2019
2 parents 5546733 + 86c1bfa commit 4777813
Show file tree
Hide file tree
Showing 18 changed files with 15,826 additions and 9,106 deletions.
8 changes: 8 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": "react-app",
"parserOptions": {
"ecmaFeatures": {
"legacyDecorators": true
}
}
}
17 changes: 9 additions & 8 deletions config-overrides.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
const rewireMobX = require('react-app-rewire-mobx');
const {
addDecoratorsLegacy,
disableEsLint,
override
} = require("customize-cra");

/* config-overrides.js */
module.exports = function override(config, env) {
// use the MobX rewire
config = rewireMobX(config,env);

return config;
}
module.exports = override(
addDecoratorsLegacy(),
disableEsLint()
);
2 changes: 1 addition & 1 deletion e2e-script/parity/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM parity/parity:v1.11.11
FROM parity/parity:v2.2.11

WORKDIR /stuff

Expand Down
2 changes: 1 addition & 1 deletion e2e-script/parity/Dockerfile-foreign
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM parity/parity:v1.11.11
FROM parity/parity:v2.2.11

WORKDIR /stuff

Expand Down
1 change: 0 additions & 1 deletion e2e-script/parity/chain-foreign.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"eip161dTransition": "0x0",
"eip155Transition": "0x0",
"eip98Transition": "0x7fffffffffffff",
"eip86Transition": "0x7fffffffffffff",
"maxCodeSize": 24576,
"maxCodeSizeTransition": "0x0",
"eip140Transition": "0x0",
Expand Down
1 change: 0 additions & 1 deletion e2e-script/parity/chain.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"eip161dTransition": "0x0",
"eip155Transition": "0x0",
"eip98Transition": "0x7fffffffffffff",
"eip86Transition": "0x7fffffffffffff",
"maxCodeSize": 24576,
"maxCodeSizeTransition": "0x0",
"eip140Transition": "0x0",
Expand Down
2 changes: 1 addition & 1 deletion e2e-script/run-tests.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
docker-compose up -d --build
docker-compose up -d --build --force-recreate
cd ..
npm run start:blocks &
cd e2e-script
Expand Down
Loading

0 comments on commit 4777813

Please sign in to comment.