Remove an explicit EIP-2565 activation

This commit is contained in:
POA 2021-05-05 11:07:47 +03:00
parent 8558a6c22c
commit 63a8713032
2 changed files with 1 additions and 9 deletions

@ -1 +1 @@
Subproject commit 34552ccdbfc148ae48a7a6de44e1b435ff21f5f8
Subproject commit 8053dc58c0f4591a6999ec05e3ee6dbdd180d90b

View File

@ -22,14 +22,6 @@ async function main() {
console.log();
console.log();
// Explicitly activate EIP-2565
if (process.env.CLIENT == 'openethereum') {
specFile.accounts["0000000000000000000000000000000000000005"].builtin.pricing["0"].price = { modexp2565: {} };
} else if (process.env.CLIENT == 'nethermind') {
specFile.params.eip2565Transition = "0x0";
specFile.params.eip2718Transition = "0x0";
}
await promisify(fs.writeFile)(__dirname + '/../data/spec.json', JSON.stringify(specFile, null, ' '), 'UTF-8');
}