diff --git a/tests/solidity/suites/staking/contracts/test/mocks/StandardTokenMock.sol b/tests/solidity/suites/staking/contracts/test/mocks/StandardTokenMock.sol index e79a2477..80016900 100644 --- a/tests/solidity/suites/staking/contracts/test/mocks/StandardTokenMock.sol +++ b/tests/solidity/suites/staking/contracts/test/mocks/StandardTokenMock.sol @@ -212,4 +212,12 @@ contract StandardTokenMock is ERC20 { allowed[_account][msg.sender] = allowed[_account][msg.sender].sub(_amount); _burn(_account, _amount); } + + // For benchmarks + event TestLog(address sender, uint i); + function benchmarkLogs(uint n) public { + for (uint i=0; i