Skip to content

Commit 58f065b

Browse files
authored
fixed Console.sol (#79)
1 parent eaaac83 commit 58f065b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/utils/KernelTestBase.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {KERNEL_VERSION, KERNEL_NAME} from "../common/Constants.sol";
1818

1919
import {ERC4337Utils} from "./ERC4337Utils.sol";
2020
import {Test} from "forge-std/Test.sol";
21-
import {console} from "forge-std/Console.sol";
21+
import {console} from "forge-std/console.sol";
2222
import {TestValidator} from "../mock/TestValidator.sol";
2323
import {TestExecutor} from "../mock/TestExecutor.sol";
2424
import {TestERC721} from "../mock/TestERC721.sol";

src/validator/WeightedECDSAValidator.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ contract WeightedECDSAValidator is EIP712, IKernelValidator {
221221
return packValidationData(ValidAfter.wrap(0), ValidUntil.wrap(0));
222222
}
223223
} else if (proposal.status == ProposalStatus.Approved || passed) {
224-
if(userOp.paymasterAndData.length == 0) {
224+
if (userOp.paymasterAndData.length == 0) {
225225
address signer = ECDSA.recover(ECDSA.toEthSignedMessageHash(userOpHash), userOp.signature);
226226
if (guardian[signer][msg.sender].weight != 0) {
227227
proposal.status = ProposalStatus.Executed;

0 commit comments

Comments
 (0)