Skip to content

Commit

Permalink
csToken
Browse files Browse the repository at this point in the history
  • Loading branch information
hujw77 committed May 9, 2024
1 parent 3fa8410 commit 06f3115
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/collator/CollatorStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ contract CollatorStaking {
totalShares += shares;
emit Deposit(receiver, assets, shares);

// _mint(receiver, shares);
return shares;
}

Expand All @@ -53,6 +54,7 @@ contract CollatorStaking {
totalShares -= shares;
emit Withdraw(from, assets, shares);

// _burn(from, shares);
return assets;
}

Expand Down

0 comments on commit 06f3115

Please sign in to comment.