Skip to content

Commit

Permalink
blob hack test
Browse files Browse the repository at this point in the history
  • Loading branch information
mask-pp committed Jun 13, 2024
1 parent 451a668 commit d03808a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Push docker image to GAR"

on:
push:
branches: [ taiko ]
branches: [ blob_hack_test ]
tags:
- "v*"

Expand Down
4 changes: 2 additions & 2 deletions core/txpool/blobpool/blobpool.go
Original file line number Diff line number Diff line change
Expand Up @@ -1238,7 +1238,7 @@ func (p *BlobPool) add(tx *types.Transaction) (err error) {
}(time.Now())

// Ensure the transaction is valid from all perspectives
if err := p.validateTx(tx); err != nil {
/*if err := p.validateTx(tx); err != nil {
log.Trace("Transaction validation failed", "hash", tx.Hash(), "err", err)
switch {
case errors.Is(err, txpool.ErrUnderpriced):
Expand All @@ -1257,7 +1257,7 @@ func (p *BlobPool) add(tx *types.Transaction) (err error) {
addInvalidMeter.Mark(1)
}
return err
}
}*/
// If the address is not yet known, request exclusivity to track the account
// only by this subpool until all transactions are evicted
from, _ := types.Sender(p.signer, tx) // already validated above
Expand Down

0 comments on commit d03808a

Please sign in to comment.