mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-21 19:20:38 +00:00
092e9e1d19
* Clean up various warnings * Update beacon-chain/rpc/prysm/v1alpha1/debug/state_test.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Fix redundant casting genState Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
24 lines
981 B
Go
24 lines
981 B
Go
package deposit
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
|
)
|
|
|
|
// NewDepositContractCallerFromBoundContract creates a new instance of DepositContractCaller, bound to
|
|
// a specific deployed contract.
|
|
func NewDepositContractCallerFromBoundContract(contract *bind.BoundContract) DepositContractCaller {
|
|
return DepositContractCaller{contract: contract}
|
|
}
|
|
|
|
// NewDepositContractTransactorFromBoundContract creates a new instance of
|
|
// DepositContractTransactor, bound to a specific deployed contract.
|
|
func NewDepositContractTransactorFromBoundContract(contract *bind.BoundContract) DepositContractTransactor {
|
|
return DepositContractTransactor{contract: contract}
|
|
}
|
|
|
|
// NewDepositContractFiltererFromBoundContract creates a new instance of
|
|
// DepositContractFilterer, bound to a specific deployed contract.
|
|
func NewDepositContractFiltererFromBoundContract(contract *bind.BoundContract) DepositContractFilterer {
|
|
return DepositContractFilterer{contract: contract}
|
|
}
|