Skip to content

Commit

Permalink
[untracked]: remove redundant friend declaration (#15)
Browse files Browse the repository at this point in the history
## Summary

## Detail

## Testing

## Documentation

---

**Requested Reviewers:** @mention
  • Loading branch information
hsinghgrewal authored Dec 11, 2024
1 parent 62ca519 commit 4d7a438
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ module token_messenger_minter::token_messenger {
// ----- Public Functions ------
// -----------------------------

/// Burns token from sender address, to be minted on destination domain. Emits `DepositForBurn` event.
/// Burns the passed in token asset, to be minted on destination domain. Emits `DepositForBurn` event.
/// Aborts if:
/// - amount is zero
/// - destination domain has no TokenMessenger registered
Expand All @@ -135,7 +135,7 @@ module token_messenger_minter::token_messenger {
)
}

/// Burns token from sender address, to be minted on destination domain. The mint on the destination domain must
/// Burns the passed in token asset, to be minted on destination domain. The mint on the destination domain must
/// be called by `destinationCaller`. Emits `DepositForBurn` event.
/// Aborts if:
/// - amount is zero
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ module token_messenger_minter::token_controller {
// Friend Modules
friend token_messenger_minter::token_minter;
friend token_messenger_minter::token_messenger_minter;
friend token_messenger_minter::token_messenger;

// Errors
const ENOT_TOKEN_CONTROLLER: u64 = 1;
Expand Down

0 comments on commit 4d7a438

Please sign in to comment.