Skip to content

Commit

Permalink
fix gas
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdulmalikGiwa committed Feb 22, 2024
1 parent 032f08a commit 02d8ac1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions op-batcher/batcher/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ func (l *BatchSubmitter) blobTxCandidate(data []byte) (*txmgr.TxCandidate, error
To: &l.RollupConfig.BatchInboxAddress,
Blobs: []*eth.Blob{&b},
// SYSCOIN let L1 estimate gas due to precompile
GasLimit: 400000000,
//GasLimit: 400000000,
}, nil
}

Expand All @@ -446,7 +446,7 @@ func (l *BatchSubmitter) calldataTxCandidate(data []byte) *txmgr.TxCandidate {
To: &l.RollupConfig.BatchInboxAddress,
TxData: data,
// SYSCOIN let L1 estimate gas due to precompile
GasLimit: 400000000,
//GasLimit: 400000000,
}
}

Expand Down

0 comments on commit 02d8ac1

Please sign in to comment.