Skip to content

Commit 7b5697c

Browse files
authored
fix : corrected the spelling words (#255)
* fix Geyser.sol * fix README.md * fix Geyser.ts * fix INFO.md
1 parent dd01445 commit 7b5697c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

INFO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
- RouterV1 mints vaults, so it needs to be a `IERC721Receiver` and implement `onERC721Received`.
66
- Added the `depositStake` contract function that does the same thing as the existing `create2VaultAndStake` function, except it doesn't create a vault.
7-
- Fixed a bug relating to the logic for when to update partially unstaked stake in `unstakeAndClaim` of the Geyser contract. See lines 895-901 in `contracts/Geyser.sol` for a description of the change.
7+
- Fixed a bug relating to the logic for when to update a partially unstaked stake in `unstakeAndClaim` of the Geyser contract. See lines 895-901 in `contracts/Geyser.sol` for a description of the change.
88

99
## Subgraph Changes
1010

contracts/Geyser.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ interface IGeyser is IRageQuit {
190190
/// - Online:
191191
/// Geyser is operating normally, all functions are enabled
192192
/// - Offline:
193-
/// Geyser is temporarely disabled for maintenance
194-
/// User deposits and withdrawls are disabled, ragequit remains enabled
193+
/// Geyser is temporarily disabled for maintenance
194+
/// User deposits and withdrawals are disabled, ragequit remains enabled
195195
/// Users can withdraw their stake through rageQuit() but forego their pending reward
196196
/// Should only be used when downtime required for an upgrade
197197
/// - Shutdown:

frontend/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Jump to
1111

1212
## Known Workarounds
1313

14-
- `let mounted = true` in `useEffect` is a workaround for supressing the warning saying that a state update on an unmounted component is not possible: https://stackoverflow.com/questions/53949393/cant-perform-a-react-state-update-on-an-unmounted-component
14+
- `let mounted = true` in `useEffect` is a workaround for suppressing the warning saying that a state update on an unmounted component is not possible: https://stackoverflow.com/questions/53949393/cant-perform-a-react-state-update-on-an-unmounted-component
1515
- react-spring has a bug where floating point numbers are casted as integers on re-render (e.g. '1.0' gets shown as '1' on re-render). This is a temporary work-around, see https://github.com/pmndrs/react-spring/issues/1564
1616
- Opening a modal right after closing a previous one can mess up the `overflow-y` of the page. As a workaround, there is a delay before the second modal is opened (see the function `handleConfirmUnstake` under `src/components/GeyserStakeView.tsx`)
1717

test/Geyser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515

1616
/*
1717
18-
Dev note: This test file suffers from indeterminancy based on timestamp manipulation.
18+
Dev note: This test file suffers from indeterminacy based on timestamp manipulation.
1919
2020
If you are encountering tests which fail unexpectedly, make sure increaseTime() is
2121
correctly setting the timestamp of the next block.

0 commit comments

Comments
 (0)