From d33b7bd7994bcd09710690f275ff25094427ef82 Mon Sep 17 00:00:00 2001 From: Tudor Malene Date: Fri, 15 Dec 2023 10:18:29 +0000 Subject: [PATCH] increase timeout --- integration/obscurogateway/tengateway_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/obscurogateway/tengateway_test.go b/integration/obscurogateway/tengateway_test.go index 95c6a88ad0..9c38b4f8ce 100644 --- a/integration/obscurogateway/tengateway_test.go +++ b/integration/obscurogateway/tengateway_test.go @@ -583,7 +583,7 @@ func transferETHToAddress(client *ethclient.Client, wallet wallet.Wallet, toAddr if err != nil { return nil, err } - return integrationCommon.AwaitReceiptEth(context.Background(), client, signedTx.Hash(), 2*time.Second) + return integrationCommon.AwaitReceiptEth(context.Background(), client, signedTx.Hash(), 20*time.Second) } func subscribeToEvents(addresses []gethcommon.Address, topics [][]gethcommon.Hash, client *ethclient.Client, logs *[]types.Log) ethereum.Subscription { //nolint:unparam