Skip to content

Commit

Permalink
Fix NatSpec for submissionNativeSender
Browse files Browse the repository at this point in the history
  • Loading branch information
Vsevo1od committed Dec 2, 2021
1 parent fd6f3aa commit c14ff11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/interfaces/ICallProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ interface ICallProxy {

/// @dev Chain from which the current submission is received
function submissionChainIdFrom() external returns (uint256);
/// @dev Chain from which the current submission is received
/// @dev Native sender of the current submission
function submissionNativeSender() external returns (bytes memory);

/// @dev Used for calls where native asset transfer is involved.
Expand Down
2 changes: 1 addition & 1 deletion contracts/periphery/CallProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ contract CallProxy is Initializable, AccessControlUpgradeable, ICallProxy {
bytes32 public constant DEBRIDGE_GATE_ROLE = keccak256("DEBRIDGE_GATE_ROLE");
/// @dev Chain from which the current submission is received
uint256 public override submissionChainIdFrom;
/// @dev Chain from which the current submission is received
/// @dev Native sender of the current submission
bytes public override submissionNativeSender;

/* ========== ERRORS ========== */
Expand Down

0 comments on commit c14ff11

Please sign in to comment.