Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkaplan13 committed Oct 24, 2023
1 parent d7e8436 commit ca512ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/utils/network_setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ func DeployTeleporterContracts(transactionBytes []byte, deployerAddress common.A

// Fund the deployer address
{
fundAmounnt := big.NewInt(0).Mul(big.NewInt(1e18), big.NewInt(10)) // 10eth
fundDeployerTx := createNativeTransferTransaction(ctx, subnetInfo, fundedAddress, fundedKey, deployerAddress, fundAmounnt)
fundAmount := big.NewInt(0).Mul(big.NewInt(1e18), big.NewInt(10)) // 10eth
fundDeployerTx := createNativeTransferTransaction(ctx, subnetInfo, fundedAddress, fundedKey, deployerAddress, fundAmount)
SendTransactionAndWaitForAcceptance(ctx, subnetInfo.ChainWSClient, fundDeployerTx)
}
log.Info("Finished funding Teleporter deployer", "blockchainID", subnetInfo.BlockchainID.Hex())
Expand Down

0 comments on commit ca512ed

Please sign in to comment.