Skip to content

Commit

Permalink
⚗️
Browse files Browse the repository at this point in the history
  • Loading branch information
cruzdanilo committed Apr 9, 2024
1 parent ec88549 commit a0f1a52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,5 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: oven-sh/setup-bun@v1
- uses: foundry-rs/foundry-toolchain@v1
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
cache-dependency-path: requirements.txt
- run: pip install -r requirements.txt
- run: bun install
- run: bun run test
- run: forge test --force --mt test_userOpValidation_owner_standardExecute -vvvvv
2 changes: 2 additions & 0 deletions test/MultiOwnerPluginIntegration.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ pragma solidity ^0.8.25;
import { Test } from "forge-std/Test.sol";

import { IERC1271 } from "@openzeppelin/contracts/interfaces/IERC1271.sol";
import { ERC1967Proxy } from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
import { ECDSA } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

import { EntryPoint } from "account-abstraction/core/EntryPoint.sol";
Expand Down Expand Up @@ -61,6 +62,7 @@ contract MultiOwnerPluginIntegration is Test {
keccak256(abi.encode(plugin.pluginManifest())),
entryPoint
);
emit log_bytes(type(ERC1967Proxy).creationCode);

// setup account with MultiOwnerModularAccountFactory
owners = new address[](2);
Expand Down

0 comments on commit a0f1a52

Please sign in to comment.