Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions contracts/socket/SocketSrc.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ abstract contract SocketSrc is SocketBase {
////////////////////////////////////////////////////////

/**
* @dev Error triggerred when invalid capacitor address is provided
* @dev Error triggered when invalid capacitor address is provided
*/
error InvalidCapacitorAddress();

/**
* @dev Error triggerred when siblingPlug is not found
* @dev Error triggered when siblingPlug is not found
*/
error PlugDisconnected();

Expand Down Expand Up @@ -92,7 +92,7 @@ abstract contract SocketSrc is SocketBase {
// if no sibling plug is found for the given chain slug, revert
if (plugConfig.siblingPlug == address(0)) revert PlugDisconnected();

// fetches auxillary details for the message from the plug config
// fetches auxiliary details for the message from the plug config
plugConfig.capacitor__ = _plugConfigs[msg.sender][siblingChainSlug_]
.capacitor__;
plugConfig.outboundSwitchboard__ = _plugConfigs[msg.sender][
Expand Down