Skip to content

Commit

Permalink
Fix value mangle of unrestricted transfer agent
Browse files Browse the repository at this point in the history
  • Loading branch information
miohtama committed Dec 16, 2018
1 parent dc33466 commit 4b88092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/security-token/UnrestrictedTransferAgent.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ contract UnrestrictedTransferAgent is SecurityTransferAgent {
}

function verify(address from, address to, uint256 value) public returns (uint256 newValue) {
return 1;
return value;
}
}

0 comments on commit 4b88092

Please sign in to comment.