bsc/tests/0001-diff-go-ethereum.patch

69 lines
2.8 KiB
Diff
Raw Normal View History

2024-07-31 10:50:43 +03:00
From 32329440626abd6e9668c2d5bd2e7b719e951e01 Mon Sep 17 00:00:00 2001
From: NathanBSC <Nathan.l@nodereal.io>
Date: Wed, 31 Jul 2024 15:01:28 +0800
Subject: [PATCH] diff go ethereum
---
core/vm/contracts.go | 10 ----------
core/vm/jump_table.go | 2 +-
params/protocol_params.go | 2 +-
3 files changed, 2 insertions(+), 12 deletions(-)
2024-01-10 11:58:27 +03:00
diff --git a/core/vm/contracts.go b/core/vm/contracts.go
2024-07-31 10:50:43 +03:00
index 38a6cac24..7eb29c3ed 100644
2024-01-10 11:58:27 +03:00
--- a/core/vm/contracts.go
+++ b/core/vm/contracts.go
2024-07-31 10:50:43 +03:00
@@ -84,9 +84,6 @@ var PrecompiledContractsIstanbul = map[common.Address]PrecompiledContract{
2024-01-10 11:58:27 +03:00
common.BytesToAddress([]byte{7}): &bn256ScalarMulIstanbul{},
common.BytesToAddress([]byte{8}): &bn256PairingIstanbul{},
common.BytesToAddress([]byte{9}): &blake2F{},
-
- common.BytesToAddress([]byte{100}): &tmHeaderValidate{},
- common.BytesToAddress([]byte{101}): &iavlMerkleProofValidate{},
}
var PrecompiledContractsNano = map[common.Address]PrecompiledContract{
2024-07-31 10:50:43 +03:00
@@ -239,13 +236,6 @@ var PrecompiledContractsCancun = map[common.Address]PrecompiledContract{
common.BytesToAddress([]byte{8}): &bn256PairingIstanbul{},
common.BytesToAddress([]byte{9}): &blake2F{},
common.BytesToAddress([]byte{0x0a}): &kzgPointEvaluation{},
-
- common.BytesToAddress([]byte{100}): &tmHeaderValidate{},
- common.BytesToAddress([]byte{101}): &iavlMerkleProofValidatePlato{},
- common.BytesToAddress([]byte{102}): &blsSignatureVerify{},
- common.BytesToAddress([]byte{103}): &cometBFTLightBlockValidateHertz{},
- common.BytesToAddress([]byte{104}): &verifyDoubleSignEvidence{},
- common.BytesToAddress([]byte{105}): &secp256k1SignatureRecover{},
}
2024-07-31 10:50:43 +03:00
// PrecompiledContractsHaber contains the default set of pre-compiled Ethereum
2024-01-10 11:58:27 +03:00
diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go
index 70c543f14..65716f944 100644
2024-01-10 11:58:27 +03:00
--- a/core/vm/jump_table.go
+++ b/core/vm/jump_table.go
@@ -91,7 +91,7 @@ func newCancunInstructionSet() JumpTable {
2024-01-10 11:58:27 +03:00
}
func newShanghaiInstructionSet() JumpTable {
- instructionSet := newLondonInstructionSet()
+ instructionSet := newMergeInstructionSet()
enable3855(&instructionSet) // PUSH0 instruction
enable3860(&instructionSet) // Limit and meter initcode
diff --git a/params/protocol_params.go b/params/protocol_params.go
2024-07-31 10:50:43 +03:00
index 65b2d942c..bb085512f 100644
2024-01-10 11:58:27 +03:00
--- a/params/protocol_params.go
+++ b/params/protocol_params.go
@@ -23,7 +23,7 @@ import (
)
2024-01-10 11:58:27 +03:00
const (
- GasLimitBoundDivisor uint64 = 256 // The bound divisor of the gas limit, used in update calculations.
+ GasLimitBoundDivisor uint64 = 1024 // The bound divisor of the gas limit, used in update calculations.
MinGasLimit uint64 = 5000 // Minimum the gas limit may ever be.
MaxGasLimit uint64 = 0x7fffffffffffffff // Maximum the gas limit (2^63-1).
GenesisGasLimit uint64 = 4712388 // Gas limit of the Genesis block.
2024-07-31 10:50:43 +03:00
--
2.41.0