diff --git a/src/Escrow.sol b/src/Escrow.sol index c186e46..23a322f 100644 --- a/src/Escrow.sol +++ b/src/Escrow.sol @@ -35,7 +35,7 @@ contract Escrow { } // Stores how much escrow each sender has deposited for each receiver, as well as thawing information - mapping(address sender => mapping(address reciever => EscrowAccount escrowAccount)) + mapping(address sender => mapping(address receiver => EscrowAccount escrowAccount)) public escrowAccounts; // Map of signer to authorized signer information mapping(address signer => SenderAuthorization authorizedSigner) diff --git a/src/IStaking.sol b/src/IStaking.sol index 032c78f..aae6e95 100644 --- a/src/IStaking.sol +++ b/src/IStaking.sol @@ -4,7 +4,7 @@ pragma solidity ^0.8.18; /** * @title IStaking - * @dev This interface is intended to mock the neccessary functions of the `Staking` contract while using a + * @dev This interface is intended to mock the necessary functions of the `Staking` contract while using a * version of solidity consistent with the project. * @notice When deploying this interface should be attached to the `Staking` contract. */