From 28210a3f6041b360ba8c82137a0f9ec714555fb3 Mon Sep 17 00:00:00 2001 From: Bryan Cole Date: Thu, 17 Aug 2023 14:41:26 -0700 Subject: [PATCH] refactor: fix spelling errors Signed-off-by: Bryan Cole --- src/Escrow.sol | 2 +- src/IStaking.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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. */