From 075a6fb86ac8eda0735840f79e7b2d9bbec84a4a Mon Sep 17 00:00:00 2001 From: Dan J Miller Date: Mon, 19 Sep 2022 10:47:40 -0230 Subject: [PATCH] Properly configure ethereumjs Common for Sepolia network (#15871) --- app/scripts/controllers/transactions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/controllers/transactions/index.js b/app/scripts/controllers/transactions/index.js index 29e71e22f..c34b5816d 100644 --- a/app/scripts/controllers/transactions/index.js +++ b/app/scripts/controllers/transactions/index.js @@ -256,7 +256,7 @@ export default class TransactionController extends EventEmitter { // type will be one of our default network names or 'rpc'. the default // network names are sufficient configuration, simply pass the name as the // chain argument in the constructor. - if (type !== NETWORK_TYPES.RPC) { + if (type !== NETWORK_TYPES.RPC && type !== NETWORK_TYPES.SEPOLIA) { return new Common({ chain: type, hardfork,