feat: EthApiTest: Confirm EthAddressToFilecoinAddress works without EthRPC (#10302)

This commit is contained in:
Aayush Rajasekaran 2023-02-17 12:16:09 -05:00 committed by GitHub
parent 00b6d06041
commit d589443a5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()