Skip to content

Commit

Permalink
chore: fix some typos
Browse files Browse the repository at this point in the history
Signed-off-by: frameflare <[email protected]>
  • Loading branch information
frameflare committed Apr 5, 2024
1 parent 28db75c commit 27ffbd0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions past/2021/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ https://twitter.com/BlockSecTeam/status/1438100688215560192

---

### 20210912 ZABU Finance - Deflationary token uncompatible
### 20210912 ZABU Finance - Deflationary token incompatible

Testing

Expand Down Expand Up @@ -488,7 +488,7 @@ https://chain-swap.medium.com/chainswap-post-mortem-and-compensation-plan-90cad5

---

### 20210628 SafeDollar - Deflationary token uncompatible
### 20210628 SafeDollar - Deflationary token incompatible

### Lost: $.2 million

Expand Down
2 changes: 1 addition & 1 deletion past/2023/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1677,7 +1677,7 @@ https://twitter.com/Phalcon_xyz/status/1680961588323557376

---

### 20230712 Platypus - Bussiness Logic Flaw
### 20230712 Platypus - Business Logic Flaw

### Lost: ~$51K

Expand Down
2 changes: 1 addition & 1 deletion src/test/TIME_exp.sol
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ contract ContractTest is Test {
TIMEToWETH();
WETH.withdraw(WETH.balanceOf(address(this)));

// In the end of attack tx also ~5 ether was transfered to Flashbot
// In the end of attack tx also ~5 ether was transferred to Flashbot
emit log_named_decimal_uint(
"Exploiter ETH balance after attack",
address(this).balance,
Expand Down
4 changes: 2 additions & 2 deletions src/test/TrustPad_exp.sol
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ contract ContractTest is Test {
(bool success,) = address(helperContract).delegatecall(
abi.encodeWithSignature("deposit(address,uint256,uint256)", address(LaunchpadLockableStaking), 30, 1)
);
require(success, "Delegatecall to deposit not successfull");
require(success, "Delegatecall to deposit not successfully");

assertEq(TPAD.balanceOf(address(this)), startBalanceTPAD - 1);

Expand All @@ -91,7 +91,7 @@ contract ContractTest is Test {
(success,) = address(helperContract).delegatecall(
abi.encodeWithSignature("withdraw(address,uint256)", address(LaunchpadLockableStaking), 0)
);
require(success, "Delegatecall to withdraw not successfull");
require(success, "Delegatecall to withdraw not successfully");

emit log_named_decimal_uint(
"Exploiter's helper contract TPAD balance after attack",
Expand Down
2 changes: 1 addition & 1 deletion src/test/VTF_exp.sol
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ contract ContractTest is Test {

CheatCodes constant cheat = CheatCodes(0x7109709ECfa91a80626fF3989D68f67F5b1DD12D);

// ankr rpc bsc maybe unavailible, please use QuickNode
// ankr rpc bsc maybe unavailable, please use QuickNode
function setUp() public {
cheat.createSelectFork("bsc", 22_535_101);
}
Expand Down

0 comments on commit 27ffbd0

Please sign in to comment.