mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-17 10:20:44 +00:00
Go Binding added in MultiSigWallet
This commit is contained in:
parent
fd51ea9fc1
commit
26affd91ab
2 changed files with 20 additions and 5 deletions
|
|
@ -436,7 +436,7 @@ func (_MultiSigWallet *MultiSigWalletCallerSession) Owners(arg0 *big.Int) (commo
|
||||||
return _MultiSigWallet.Contract.Owners(&_MultiSigWallet.CallOpts, arg0)
|
return _MultiSigWallet.Contract.Owners(&_MultiSigWallet.CallOpts, arg0)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Required is a free data retrieval call binding the contract method 0xdc8452cd.
|
// Required is a free data retrieval call binding the contract method 0XDC8452cd.
|
||||||
//
|
//
|
||||||
// Solidity: function required() constant returns(uint256)
|
// Solidity: function required() constant returns(uint256)
|
||||||
func (_MultiSigWallet *MultiSigWalletCaller) Required(opts *bind.CallOpts) (*big.Int, error) {
|
func (_MultiSigWallet *MultiSigWalletCaller) Required(opts *bind.CallOpts) (*big.Int, error) {
|
||||||
|
|
@ -448,14 +448,14 @@ func (_MultiSigWallet *MultiSigWalletCaller) Required(opts *bind.CallOpts) (*big
|
||||||
return *ret0, err
|
return *ret0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Required is a free data retrieval call binding the contract method 0xdc8452cd.
|
// Required is a free data retrieval call binding the contract method 0XDC8452cd.
|
||||||
//
|
//
|
||||||
// Solidity: function required() constant returns(uint256)
|
// Solidity: function required() constant returns(uint256)
|
||||||
func (_MultiSigWallet *MultiSigWalletSession) Required() (*big.Int, error) {
|
func (_MultiSigWallet *MultiSigWalletSession) Required() (*big.Int, error) {
|
||||||
return _MultiSigWallet.Contract.Required(&_MultiSigWallet.CallOpts)
|
return _MultiSigWallet.Contract.Required(&_MultiSigWallet.CallOpts)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Required is a free data retrieval call binding the contract method 0xdc8452cd.
|
// Required is a free data retrieval call binding the contract method 0XDC8452cd.
|
||||||
//
|
//
|
||||||
// Solidity: function required() constant returns(uint256)
|
// Solidity: function required() constant returns(uint256)
|
||||||
func (_MultiSigWallet *MultiSigWalletCallerSession) Required() (*big.Int, error) {
|
func (_MultiSigWallet *MultiSigWalletCallerSession) Required() (*big.Int, error) {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,18 @@
|
||||||
|
// Copyright (c) 2018 XDCchain
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Lesser General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Lesser General Public License
|
||||||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package multisigwallet
|
package multisigwallet
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue