Skip to content

Commit

Permalink
feat(storage-rules): include aggregator
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfourzerofour committed Nov 17, 2023
1 parent 033228a commit 355888b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/pool/src/mempool/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ impl PoolInner {

for e in uo.entities() {
match e.kind {
EntityType::Factory | EntityType::Paymaster => {
EntityType::Factory | EntityType::Paymaster | EntityType::Aggregator => {
if let Some(ec) = self.count_by_address.get(&e.address) {
if ec.sender().gt(&0) {
return Err(MempoolError::MultipleRolesViolation(e));
Expand Down

0 comments on commit 355888b

Please sign in to comment.