Go Binding added in MultiSigWallet

This commit is contained in:
AnilChinchawale 2019-01-17 04:40:25 +05:30
parent fd51ea9fc1
commit 26affd91ab
2 changed files with 20 additions and 5 deletions

View file

@ -436,7 +436,7 @@ func (_MultiSigWallet *MultiSigWalletCallerSession) Owners(arg0 *big.Int) (commo
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)
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
}
// 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)
func (_MultiSigWallet *MultiSigWalletSession) Required() (*big.Int, error) {
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)
func (_MultiSigWallet *MultiSigWalletCallerSession) Required() (*big.Int, error) {
@ -1895,4 +1895,4 @@ func (_MultiSigWallet *MultiSigWalletFilterer) WatchSubmission(opts *bind.WatchO
}
}
}), nil
}
}

View file

@ -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
import (
@ -39,4 +54,4 @@ func DeployMultiSigWallet(transactOpts *bind.TransactOpts, contractBackend bind.
}
return blockSignerAddr, blockSigner, nil
}
}