github.com/kapoio/go-kapoio@v1.9.7/accounts/abi/bind/util.go (about) 1 // Copyright 2016 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 package bind 18 19 import ( 20 "context" 21 "fmt" 22 "time" 23 24 "github.com/ethereum/go-ethereum/common" 25 "github.com/ethereum/go-ethereum/core/types" 26 "github.com/ethereum/go-ethereum/log" 27 ) 28 29 // WaitMined waits for tx to be mined on the blockchain. 30 // It stops waiting when the context is canceled. 31 func WaitMined(ctx context.Context, b DeployBackend, tx *types.Transaction) (*types.Receipt, error) { 32 queryTicker := time.NewTicker(time.Second) 33 defer queryTicker.Stop() 34 35 logger := log.New("hash", tx.Hash()) 36 for { 37 receipt, err := b.TransactionReceipt(ctx, tx.Hash()) 38 if receipt != nil { 39 return receipt, nil 40 } 41 if err != nil { 42 logger.Trace("Receipt retrieval failed", "err", err) 43 } else { 44 logger.Trace("Transaction not yet mined") 45 } 46 // Wait for the next round. 47 select { 48 case <-ctx.Done(): 49 return nil, ctx.Err() 50 case <-queryTicker.C: 51 } 52 } 53 } 54 55 // WaitDeployed waits for a contract deployment transaction and returns the on-chain 56 // contract address when it is mined. It stops waiting when ctx is canceled. 57 func WaitDeployed(ctx context.Context, b DeployBackend, tx *types.Transaction) (common.Address, error) { 58 if tx.To() != nil { 59 return common.Address{}, fmt.Errorf("tx is not contract creation") 60 } 61 receipt, err := WaitMined(ctx, b, tx) 62 if err != nil { 63 return common.Address{}, err 64 } 65 if receipt.ContractAddress == (common.Address{}) { 66 return common.Address{}, fmt.Errorf("zero address") 67 } 68 // Check that code has indeed been deployed at the address. 69 // This matters on pre-Homestead chains: OOG in the constructor 70 // could leave an empty account behind. 71 code, err := b.CodeAt(ctx, receipt.ContractAddress, nil) 72 if err == nil && len(code) == 0 { 73 err = ErrNoCodeAfterDeploy 74 } 75 return receipt.ContractAddress, err 76 }