Changed before for beforeAll, refactored Bouncer tests. (#1094)
* Changed before for beforeAll, refactored Bouncer tests. * Fixed linter errors. * fix: updates for SignatureBouncer tests and voucher construction
This commit is contained in:
@ -36,7 +36,12 @@ contract SignatureBouncerMock is SignatureBouncer {
|
||||
|
||||
}
|
||||
|
||||
function checkValidSignatureAndData(address _address, bytes _bytes, uint _val, bytes _sig)
|
||||
function checkValidSignatureAndData(
|
||||
address _address,
|
||||
bytes,
|
||||
uint,
|
||||
bytes _sig
|
||||
)
|
||||
public
|
||||
view
|
||||
returns (bool)
|
||||
@ -44,11 +49,18 @@ contract SignatureBouncerMock is SignatureBouncer {
|
||||
return isValidSignatureAndData(_address, _sig);
|
||||
}
|
||||
|
||||
function onlyWithValidSignatureAndData(uint _val, bytes _sig)
|
||||
function onlyWithValidSignatureAndData(uint, bytes _sig)
|
||||
onlyValidSignatureAndData(_sig)
|
||||
public
|
||||
view
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
function theWrongMethod(bytes)
|
||||
public
|
||||
pure
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user