git checkout exercise-05
Write your code inside contracts/MultiSigWallet.sol
Complete the revokeConfirmation
function
function revokeConfirmation(uint _txIndex)
public
{
}
_txIndex
must exist_txIndex
must be executedmsg.sender
has confirmed the transactionisConfirmed
to false
for msg.sender
numConfirmations
by 1RevokeConfirmation
event RevokeConfirmation(address indexed owner, uint indexed txIndex);
Test your code
npm test