From d589443a5e0ab3bfc40a569146329369f2631e14 Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Fri, 17 Feb 2023 12:16:09 -0500 Subject: [PATCH] feat: EthApiTest: Confirm EthAddressToFilecoinAddress works without EthRPC (#10302) --- itests/eth_api_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/itests/eth_api_test.go b/itests/eth_api_test.go index 39026637f..63c6aa5a2 100644 --- a/itests/eth_api_test.go +++ b/itests/eth_api_test.go @@ -16,7 +16,8 @@ import ( ) func TestEthAddressToFilecoinAddress(t *testing.T) { - client, _, _ := kit.EnsembleMinimal(t, kit.MockProofs(), kit.ThroughRPC()) + // Disable EthRPC to confirm that this method does NOT need the EthEnableRPC config set to true + client, _, _ := kit.EnsembleMinimal(t, kit.MockProofs(), kit.ThroughRPC(), kit.DisableEthRPC()) ctx, cancel := context.WithTimeout(context.Background(), time.Minute) defer cancel()