git checkout exercise-04
Write your code inside contracts/MultiSigWallet.sol
Complete the executeTransaction
function
function executeTransaction(uint _txIndex)
public
onlyOwner
txExists(_txIndex)
notExecuted(_txIndex)
{
}
number of confirmations >= numConfirmationsRequired
executed
to true
call
methodExecuteTransaction
event ExecuteTransaction(address indexed owner, uint indexed txIndex);
Test your code
npm test