From 58c73861382ea81b65239d76b635d553f15de758 Mon Sep 17 00:00:00 2001 From: Ilja Pavlovs Date: Tue, 23 Jan 2024 16:34:15 +0200 Subject: [PATCH] fixing typo --- integration-tests/contracts/ethereum_vrfv2_contracts.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/contracts/ethereum_vrfv2_contracts.go b/integration-tests/contracts/ethereum_vrfv2_contracts.go index 90321322765..7501521ac33 100644 --- a/integration-tests/contracts/ethereum_vrfv2_contracts.go +++ b/integration-tests/contracts/ethereum_vrfv2_contracts.go @@ -263,11 +263,11 @@ func (v *EthereumVRFCoordinatorV2) GetOwner(ctx context.Context) (common.Address From: common.HexToAddress(v.client.GetDefaultWallet().Address()), Context: ctx, } - coordinatorOwnerAddres, err := v.coordinator.Owner(opts) + coordinatorOwnerAddress, err := v.coordinator.Owner(opts) if err != nil { return common.Address{}, err } - return coordinatorOwnerAddres, nil + return coordinatorOwnerAddress, nil } func (v *EthereumVRFCoordinatorV2) GetRequestConfig(ctx context.Context) (GetRequestConfig, error) {