Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function approveCurrencyForListing(
├── when approving different price for listed currency
│ └── it should revert ✅
└── when not approving different price for listed currency
├── when prive to approve for curreny is already approved
├── when prive to approve for currency is already approved
│ └── it should revert ✅
└── when approving a new price for currency ✅
├── it should update the approved price for currency
Expand Down
2 changes: 1 addition & 1 deletion src/test/smart-wallet/AccountVulnPOC.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ contract Number {
if (owner.code.length == 0) {
// Signature verification by ECDSA
} else {
// Signature verfication by EIP1271
// Signature verification by EIP1271
bytes32 digest = keccak256(abi.encode(newNum));
require(
EIP1271Verifier(owner).isValidSignature(digest, signature) == GPv2EIP1271.MAGICVALUE,
Expand Down
2 changes: 1 addition & 1 deletion src/test/staking/TokenStake.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ contract Macro_TokenStake_Tax is BaseTest {
// vm.stopPrank();
// }

// // Staked amount still reamins unchanged for stakerOne
// // Staked amount still remains unchanged for stakerOne
// (stakingTokenAmount, ) = stakeContract.getStakeInfo(stakerOne);
// assertEq(stakingTokenAmount, 100 ether);

Expand Down