Skip to content

Commit

Permalink
fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
iljapavlovs committed Jan 23, 2024
1 parent 3c07e8e commit 58c7386
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/contracts/ethereum_vrfv2_contracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 58c7386

Please sign in to comment.