Skip to content

Commit

Permalink
Shifter.sol: updated formatting and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
0x31 committed Jun 25, 2019
1 parent 3de7caa commit c54d520
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/Shifter/Shifter.sol
Expand Up @@ -34,7 +34,7 @@ contract Shifter is Ownable {
/// a fee recipient.
address public feeRecipient;

/// @notice The burning fee in bips.
/// @notice The minting and burning fee in bips.
uint16 public fee;

/// @notice Each nHash can only be seen once.
Expand All @@ -43,6 +43,7 @@ contract Shifter is Ownable {
// LogShiftIn and LogShiftOut contain a unique `shiftID` that identifies
// the mint or burn event.
uint256 public nextShiftID = 0;

event LogShiftIn(address indexed _to, uint256 _amount, uint256 indexed _shiftID);
event LogShiftOut(bytes _to, uint256 _amount, uint256 indexed _shiftID, bytes indexed _indexedTo);

Expand Down

0 comments on commit c54d520

Please sign in to comment.