mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
Update protocol_params.go
This commit is contained in:
parent
30ed76a643
commit
6e97961a69
1 changed files with 4 additions and 1 deletions
|
|
@ -164,7 +164,10 @@ const (
|
||||||
// up to half the consumed gas could be refunded. Redefined as 1/5th in EIP-3529
|
// up to half the consumed gas could be refunded. Redefined as 1/5th in EIP-3529
|
||||||
RefundQuotient uint64 = 2
|
RefundQuotient uint64 = 2
|
||||||
RefundQuotientEIP3529 uint64 = 5
|
RefundQuotientEIP3529 uint64 = 5
|
||||||
|
// SYSCOIN
|
||||||
|
SYSDataHashGas uint64 = 1400 // The cost of data hash retrieval
|
||||||
|
NEVMAddressGas uint64 = 200 // The cost of retrieving NEVM Address information
|
||||||
|
SYSBlockHashGas uint64 = 200 // the cost of SYS block hash retrieval
|
||||||
BlobTxBytesPerFieldElement = 32 // Size in bytes of a field element
|
BlobTxBytesPerFieldElement = 32 // Size in bytes of a field element
|
||||||
BlobTxFieldElementsPerBlob = 4096 // Number of field elements stored in a single data blob
|
BlobTxFieldElementsPerBlob = 4096 // Number of field elements stored in a single data blob
|
||||||
BlobTxBlobGasPerBlob = 1 << 17 // Gas consumption of a single data blob (== blob byte size)
|
BlobTxBlobGasPerBlob = 1 << 17 // Gas consumption of a single data blob (== blob byte size)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue