Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
izqui committed Feb 15, 2019
1 parent 5b7a5fe commit 2a293d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/agent/contracts/SignatureValidator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ library SignatureValidator {
// From: https://github.com/Arachnid/solidity-stringutils/blob/master/src/strings.sol
function memcpy(uint dest, uint src, uint len) private pure {
// Copy word-length chunks while possible
for(; len >= 32; len -= 32) {
for (; len >= 32; len -= 32) {
assembly {
mstore(dest, mload(src))
}
Expand Down

0 comments on commit 2a293d1

Please sign in to comment.