File tree Expand file tree Collapse file tree 1 file changed +24
-2
lines changed
src/Nethermind/Nethermind.Specs.Test Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -155,8 +155,30 @@ public ulong Eip4844TransitionTimestamp
155
155
}
156
156
}
157
157
158
- public ulong TargetBlobCount => _spec . TargetBlobCount ;
159
- public ulong MaxBlobCount => _spec . MaxBlobCount ;
158
+ private ulong ? _overridenTargetBlobCount ;
159
+ public ulong TargetBlobCount
160
+ {
161
+ get
162
+ {
163
+ return _overridenTargetBlobCount ?? _spec . TargetBlobCount ;
164
+ }
165
+ set
166
+ {
167
+ _overridenTargetBlobCount = value ;
168
+ }
169
+ }
170
+ private ulong ? _overridenMaxBlobCount ;
171
+ public ulong MaxBlobCount
172
+ {
173
+ get
174
+ {
175
+ return _overridenMaxBlobCount ?? _spec . MaxBlobCount ;
176
+ }
177
+ set
178
+ {
179
+ _overridenMaxBlobCount = value ;
180
+ }
181
+ }
160
182
public bool IsEip1153Enabled => _spec . IsEip1153Enabled ;
161
183
public bool IsEip3651Enabled => _spec . IsEip3651Enabled ;
162
184
public bool IsEip3855Enabled => _spec . IsEip3855Enabled ;
You can’t perform that action at this time.
0 commit comments