Skip to content

Commit

Permalink
Wallet: Comment out unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
ssteiger committed Jun 15, 2019
1 parent 1740b1e commit 039f039
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions wallet/contracts/wallet.vy
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@ contract ERC1820Registry:
_implementer: address
): modifying


contract ERC20Token:
def transfer(
_to: address,
_value: uint256
) -> bool: modifying


contract ERC721Token:
def safeTransferFrom(
_from: address,
Expand Down Expand Up @@ -44,9 +42,8 @@ ETHSent: event({
})

# TODO:
ERC20Received: event({

})
#ERC20Received: event({
#})

ERC20Sent: event({
_token: address,
Expand Down Expand Up @@ -129,6 +126,9 @@ def sendERC20(
ERC20Token(_token).transfer(_to, _amount)
log.ERC20Sent(_token, _to, _amount)

#@public
#def onERC20Received():


# ----- ERC721 -----
@public
Expand Down

0 comments on commit 039f039

Please sign in to comment.