Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit 45e865e

Browse files
authored
Add fix and update unit tests for header gas limit calculation (#123)
* Add fix and update unit tests for header gas limit calculation for builder blocks * Fix linter errors * Add 0x prefix
1 parent f8e796f commit 45e865e

File tree

3 files changed

+41
-17
lines changed

3 files changed

+41
-17
lines changed

builder/builder.go

+8-6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import (
99
"sync"
1010
"time"
1111

12+
"github.com/ethereum/go-ethereum/core"
13+
1214
bellatrixapi "github.com/attestantio/go-builder-client/api/bellatrix"
1315
capellaapi "github.com/attestantio/go-builder-client/api/capella"
1416
apiv1 "github.com/attestantio/go-builder-client/api/v1"
@@ -346,8 +348,13 @@ func (b *Builder) OnPayloadAttribute(attrs *types.BuilderPayloadAttributes) erro
346348
return fmt.Errorf("could not get validator while submitting block for slot %d - %w", attrs.Slot, err)
347349
}
348350

351+
parentBlock := b.eth.GetBlockByHash(attrs.HeadHash)
352+
if parentBlock == nil {
353+
return fmt.Errorf("parent block hash not found in block tree given head block hash %s", attrs.HeadHash)
354+
}
355+
349356
attrs.SuggestedFeeRecipient = [20]byte(vd.FeeRecipient)
350-
attrs.GasLimit = vd.GasLimit
357+
attrs.GasLimit = core.CalcGasLimit(parentBlock.GasLimit(), vd.GasLimit)
351358

352359
proposerPubkey, err := utils.HexToPubkey(string(vd.Pubkey))
353360
if err != nil {
@@ -358,11 +365,6 @@ func (b *Builder) OnPayloadAttribute(attrs *types.BuilderPayloadAttributes) erro
358365
return errors.New("backend not Synced")
359366
}
360367

361-
parentBlock := b.eth.GetBlockByHash(attrs.HeadHash)
362-
if parentBlock == nil {
363-
return fmt.Errorf("parent block hash not found in block tree given head block hash %s", attrs.HeadHash)
364-
}
365-
366368
b.slotMu.Lock()
367369
defer b.slotMu.Unlock()
368370

builder/builder_test.go

+18-8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import (
55
"testing"
66
"time"
77

8+
"github.com/ethereum/go-ethereum/core"
9+
810
apiv1 "github.com/attestantio/go-builder-client/api/v1"
911
"github.com/attestantio/go-eth2-client/spec/bellatrix"
1012
"github.com/attestantio/go-eth2-client/spec/phase0"
@@ -21,6 +23,13 @@ import (
2123
)
2224

2325
func TestOnPayloadAttributes(t *testing.T) {
26+
const (
27+
validatorDesiredGasLimit = 30_000_000
28+
payloadAttributeGasLimit = 0
29+
parentBlockGasLimit = 29_000_000
30+
)
31+
expectedGasLimit := core.CalcGasLimit(parentBlockGasLimit, validatorDesiredGasLimit)
32+
2433
vsk, err := bls.SecretKeyFromBytes(hexutil.MustDecode("0x370bb8c1a6e62b2882f6ec76762a67b39609002076b95aae5b023997cf9b2dc9"))
2534
require.NoError(t, err)
2635
validator := &ValidatorPrivateData{
@@ -38,7 +47,7 @@ func TestOnPayloadAttributes(t *testing.T) {
3847
gvsVd: ValidatorData{
3948
Pubkey: PubkeyHex(testBeacon.validator.Pk.String()),
4049
FeeRecipient: feeRecipient,
41-
GasLimit: 10,
50+
GasLimit: validatorDesiredGasLimit,
4251
},
4352
}
4453

@@ -54,14 +63,14 @@ func TestOnPayloadAttributes(t *testing.T) {
5463
ReceiptsRoot: common.Hash{0x08, 0x20},
5564
LogsBloom: types.Bloom{}.Bytes(),
5665
Number: uint64(10),
57-
GasLimit: uint64(50),
66+
GasLimit: expectedGasLimit,
5867
GasUsed: uint64(100),
5968
Timestamp: uint64(105),
6069
ExtraData: hexutil.MustDecode("0x0042fafc"),
6170

6271
BaseFeePerGas: big.NewInt(16),
6372

64-
BlockHash: common.HexToHash("0xca4147f0d4150183ece9155068f34ee3c375448814e4ca557d482b1d40ee5407"),
73+
BlockHash: common.HexToHash("0x68e516c8827b589fcb749a9e672aa16b9643437459508c467f66a9ed1de66a6c"),
6574
Transactions: [][]byte{},
6675
}
6776

@@ -72,7 +81,7 @@ func TestOnPayloadAttributes(t *testing.T) {
7281
Timestamp: hexutil.Uint64(104),
7382
Random: common.Hash{0x05, 0x10},
7483
SuggestedFeeRecipient: common.Address{0x04, 0x10},
75-
GasLimit: uint64(21),
84+
GasLimit: uint64(payloadAttributeGasLimit),
7685
Slot: uint64(25),
7786
}
7887

@@ -99,6 +108,7 @@ func TestOnPayloadAttributes(t *testing.T) {
99108
time.Sleep(time.Second * 3)
100109

101110
require.NotNil(t, testRelay.submittedMsg)
111+
102112
expectedProposerPubkey, err := utils.HexToPubkey(testBeacon.validator.Pk.String())
103113
require.NoError(t, err)
104114

@@ -108,11 +118,11 @@ func TestOnPayloadAttributes(t *testing.T) {
108118
BuilderPubkey: builder.builderPublicKey,
109119
ProposerPubkey: expectedProposerPubkey,
110120
ProposerFeeRecipient: feeRecipient,
111-
GasLimit: uint64(50),
121+
GasLimit: expectedGasLimit,
112122
GasUsed: uint64(100),
113123
Value: &uint256.Int{0x0a},
114124
}
115-
copy(expectedMessage.BlockHash[:], hexutil.MustDecode("0xca4147f0d4150183ece9155068f34ee3c375448814e4ca557d482b1d40ee5407")[:])
125+
copy(expectedMessage.BlockHash[:], hexutil.MustDecode("0x68e516c8827b589fcb749a9e672aa16b9643437459508c467f66a9ed1de66a6c")[:])
116126
require.Equal(t, expectedMessage, *testRelay.submittedMsg.Message)
117127

118128
expectedExecutionPayload := bellatrix.ExecutionPayload{
@@ -134,7 +144,7 @@ func TestOnPayloadAttributes(t *testing.T) {
134144

135145
require.Equal(t, expectedExecutionPayload, *testRelay.submittedMsg.ExecutionPayload)
136146

137-
expectedSignature, err := utils.HexToSignature("0xad09f171b1da05636acfc86778c319af69e39c79515d44bdfed616ba2ef677ffd4d155d87b3363c6bae651ce1e92786216b75f1ac91dd65f3b1d1902bf8485e742170732dd82ffdf4decb0151eeb7926dd053efa9794b2ebed1a203e62bb13e9")
147+
expectedSignature, err := utils.HexToSignature("0x8d1dc346d469b0678ee72baa559315433af0966d2d05dad0de9ce60ff5e4954d4e28a85643496df279494d105bc4a771034fefcdd83d71df5f1b81c9369942b20d6d574b544a93588f6182ba8b09585eb1cf3e1b6551ccbd9e76a4db8eb579fe")
138148

139149
require.NoError(t, err)
140150
require.Equal(t, expectedSignature, testRelay.submittedMsg.Signature)
@@ -150,7 +160,7 @@ func TestOnPayloadAttributes(t *testing.T) {
150160

151161
// Change the hash, expect to get the block
152162
testExecutableData.ExtraData = hexutil.MustDecode("0x0042fafd")
153-
testExecutableData.BlockHash = common.HexToHash("0x0579b1aaca5c079c91e5774bac72c7f9bc2ddf2b126e9c632be68a1cb8f3fc71")
163+
testExecutableData.BlockHash = common.HexToHash("0x6a259b9a148da3cc0bf139eaa89292fa9f7b136cfeddad17f7cb0ae33e0c3df9")
154164
testBlock, err = engine.ExecutableDataToBlock(*testExecutableData)
155165
testEthService.testBlockValue = big.NewInt(10)
156166
require.NoError(t, err)

builder/local_relay_test.go

+15-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import (
1010
"testing"
1111
"time"
1212

13+
"github.com/ethereum/go-ethereum/core"
14+
1315
"github.com/attestantio/go-builder-client/api"
1416
bellatrixapi "github.com/attestantio/go-builder-client/api/bellatrix"
1517
apiv1 "github.com/attestantio/go-builder-client/api/v1"
@@ -30,6 +32,10 @@ import (
3032
"golang.org/x/time/rate"
3133
)
3234

35+
const (
36+
testLocalRelayValidatorGasLimit = 15_000_000
37+
)
38+
3339
func newTestBackend(t *testing.T, forkchoiceData *engine.ExecutableData, block *types.Block, blockValue *big.Int) (*Builder, *LocalRelay, *ValidatorPrivateData) {
3440
validator := NewRandomValidator()
3541
sk, _ := bls.GenerateRandomSecretKey()
@@ -109,7 +115,7 @@ func prepareRegistrationMessage(t *testing.T, domain phase0.Domain, v *Validator
109115

110116
msg := apiv1.ValidatorRegistration{
111117
FeeRecipient: bellatrix.ExecutionAddress{0x42},
112-
GasLimit: 15_000_000,
118+
GasLimit: testLocalRelayValidatorGasLimit,
113119
Timestamp: time.Now(),
114120
Pubkey: pubkey,
115121
}
@@ -139,9 +145,10 @@ func TestGetHeader(t *testing.T) {
139145
ParentHash: common.HexToHash("0xafafafa"),
140146
FeeRecipient: common.Address{0x01},
141147
LogsBloom: types.Bloom{0x00, 0x05, 0x10}.Bytes(),
142-
BlockHash: common.HexToHash("0x24e6998e4d2b4fd85f7f0d27ac4b87aaf0ec18e156e4b6e194ab5dadee0cd004"),
148+
BlockHash: common.HexToHash("0x64559c793c74678dff3f5d25aa328526cdb6013f13b6d989d491a8e1d9cac77a"),
143149
BaseFeePerGas: big.NewInt(12),
144150
ExtraData: []byte{},
151+
GasLimit: 10_000_000,
145152
}
146153

147154
forkchoiceBlock, err := engine.ExecutableDataToBlock(*forkchoiceData)
@@ -164,8 +171,13 @@ func TestGetHeader(t *testing.T) {
164171
require.Equal(t, ``, rr.Body.String())
165172
require.Equal(t, 204, rr.Code)
166173

167-
err = backend.OnPayloadAttribute(&types.BuilderPayloadAttributes{})
174+
attrs := &types.BuilderPayloadAttributes{}
175+
err = backend.OnPayloadAttribute(attrs)
168176
require.NoError(t, err)
177+
178+
expectedGasLimit := core.CalcGasLimit(forkchoiceData.GasLimit, testLocalRelayValidatorGasLimit)
179+
require.Equal(t, attrs.GasLimit, expectedGasLimit)
180+
169181
time.Sleep(2 * time.Second)
170182

171183
path = fmt.Sprintf("/eth/v1/builder/header/%d/%s/%s", 0, forkchoiceData.ParentHash.Hex(), validator.Pk.String())

0 commit comments

Comments
 (0)