mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-30 00:23:46 +00:00
update tests
This commit is contained in:
parent
14f84d35c8
commit
c9cab4d2bc
1 changed files with 4 additions and 4 deletions
|
|
@ -49,10 +49,10 @@ func (c *NumericMethodName) Instance(backend bind.ContractBackend, addr common.A
|
|||
return bind.NewBoundContract(backend, addr, c.abi)
|
||||
}
|
||||
|
||||
// E1test0 is a free data retrieval call binding the contract method 0xffa02795.
|
||||
// E1test is a free data retrieval call binding the contract method 0xffa02795.
|
||||
//
|
||||
// Solidity: function _1test() pure returns()
|
||||
func (numericMethodName *NumericMethodName) PackE1test0() []byte {
|
||||
func (numericMethodName *NumericMethodName) PackE1test() []byte {
|
||||
enc, err := numericMethodName.abi.Pack("_1test")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
|
|
@ -60,10 +60,10 @@ func (numericMethodName *NumericMethodName) PackE1test0() []byte {
|
|||
return enc
|
||||
}
|
||||
|
||||
// E1test is a free data retrieval call binding the contract method 0xd02767c7.
|
||||
// E1test0 is a free data retrieval call binding the contract method 0xd02767c7.
|
||||
//
|
||||
// Solidity: function __1test() pure returns()
|
||||
func (numericMethodName *NumericMethodName) PackE1test() []byte {
|
||||
func (numericMethodName *NumericMethodName) PackE1test0() []byte {
|
||||
enc, err := numericMethodName.abi.Pack("__1test")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
|
|
|
|||
Loading…
Reference in a new issue