From 06e1a8561cc6eea3eeba0e647c1d2c041bc8c2af Mon Sep 17 00:00:00 2001 From: Michael de Hoog Date: Mon, 24 Jul 2023 14:06:12 -1000 Subject: [PATCH 1/2] Support unprotected txs --- server/config/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server/config/config.go b/server/config/config.go index 0d2b433c71..20ddf48218 100644 --- a/server/config/config.go +++ b/server/config/config.go @@ -347,6 +347,7 @@ func GetConfig(v *viper.Viper) (Config, error) { BlockRangeCap: v.GetInt32("json-rpc.block-range-cap"), HTTPTimeout: v.GetDuration("json-rpc.http-timeout"), HTTPIdleTimeout: v.GetDuration("json-rpc.http-idle-timeout"), + AllowUnprotectedTxs: v.GetBool("json-rpc.allow-unprotected-txs"), MaxOpenConnections: v.GetInt("json-rpc.max-open-connections"), EnableIndexer: v.GetBool("json-rpc.enable-indexer"), MetricsAddress: v.GetString("json-rpc.metrics-address"), From 07ce07cdd2e81092e1423b36195b5d278dfac849 Mon Sep 17 00:00:00 2001 From: Michael de Hoog Date: Mon, 24 Jul 2023 23:41:31 -1000 Subject: [PATCH 2/2] CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84fe644400..09f975cbd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Bug Fixes - (rpc) [#1688](https://github.com/evmos/ethermint/pull/1688) Align filter rule for `debug_traceBlockByNumber` +- (rpc) [#1815](https://github.com/evmos/ethermint/pull/1815) Support unprotected transactions using `--json-rpc.allow-unprotected-txs`. ### Improvements