github.com/0xPolygon/supernets2-node@v0.0.0-20230711153321-2fe574524eaa/test/benchmarks/sequencer/common/params/constants.go (about)

     1  package params
     2  
     3  import (
     4  	"time"
     5  )
     6  
     7  const (
     8  	// DefaultDeadline is the default deadline for the sequencer
     9  	DefaultDeadline = 6000 * time.Second
    10  	// MaxCumulativeGasUsed is the maximum cumulative gas used
    11  	MaxCumulativeGasUsed = 80000000000
    12  	// PrometheusPort is the port where prometheus is running
    13  	PrometheusPort = 9092
    14  	// NumberOfTxs is the number of transactions to send
    15  	NumberOfTxs = 500
    16  )