Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function ViewDividendOwed(address) public view returns (uint256) {
  2.  
  3. if (!RestrictedFromDividend[msg.sender]) {
  4. return _balances[address(this)].div(100000000).mul(_balances[msg.sender]);
  5. }
  6. else {
  7. return 0;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement