util.go 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. package bind
  17. import (
  18. "context"
  19. "errors"
  20. "time"
  21. "github.com/ethereum/go-ethereum/common"
  22. "github.com/ethereum/go-ethereum/core/types"
  23. "github.com/ethereum/go-ethereum/log"
  24. )
  25. // WaitMined waits for tx to be mined on the blockchain.
  26. // It stops waiting when the context is canceled.
  27. func WaitMined(ctx context.Context, b DeployBackend, tx *types.Transaction) (*types.Receipt, error) {
  28. queryTicker := time.NewTicker(time.Second)
  29. defer queryTicker.Stop()
  30. logger := log.New("hash", tx.Hash())
  31. for {
  32. receipt, err := b.TransactionReceipt(ctx, tx.Hash())
  33. if receipt != nil {
  34. return receipt, nil
  35. }
  36. if err != nil {
  37. logger.Trace("Receipt retrieval failed", "err", err)
  38. } else {
  39. logger.Trace("Transaction not yet mined")
  40. }
  41. // Wait for the next round.
  42. select {
  43. case <-ctx.Done():
  44. return nil, ctx.Err()
  45. case <-queryTicker.C:
  46. }
  47. }
  48. }
  49. // WaitDeployed waits for a contract deployment transaction and returns the on-chain
  50. // contract address when it is mined. It stops waiting when ctx is canceled.
  51. func WaitDeployed(ctx context.Context, b DeployBackend, tx *types.Transaction) (common.Address, error) {
  52. if tx.To() != nil {
  53. return common.Address{}, errors.New("tx is not contract creation")
  54. }
  55. receipt, err := WaitMined(ctx, b, tx)
  56. if err != nil {
  57. return common.Address{}, err
  58. }
  59. if receipt.ContractAddress == (common.Address{}) {
  60. return common.Address{}, errors.New("zero address")
  61. }
  62. // Check that code has indeed been deployed at the address.
  63. // This matters on pre-Homestead chains: OOG in the constructor
  64. // could leave an empty account behind.
  65. code, err := b.CodeAt(ctx, receipt.ContractAddress, nil)
  66. if err == nil && len(code) == 0 {
  67. err = ErrNoCodeAfterDeploy
  68. }
  69. return receipt.ContractAddress, err
  70. }