diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index afe553c840bc..a983fb3c7fbc 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -2,7 +2,7 @@ name: "Push docker image to GAR" on: push: - branches: [ taiko ] + branches: [ blob_hack_test ] tags: - "v*" diff --git a/core/txpool/blobpool/blobpool.go b/core/txpool/blobpool/blobpool.go index 3ed698c1b18f..755c84a59cb9 100644 --- a/core/txpool/blobpool/blobpool.go +++ b/core/txpool/blobpool/blobpool.go @@ -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): @@ -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