Skip to content

Commit 4882aa0

Browse files
authored
fix references of builder's comparision factor to boost factor (#398)
1 parent cac30c0 commit 4882aa0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

apis/validator/block.v3.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,22 +53,22 @@ get:
5353
payload, and receives valid responses from both the builder endpoint _and_ the paired
5454
execution node. When these preconditions are met, the server MUST act as follows:
5555
56-
* if `exec_node_payload_value >= builder_comparison_factor * (builder_payload_value // 100)`,
56+
* if `exec_node_payload_value >= builder_boost_factor * (builder_payload_value // 100)`,
5757
then return a full (unblinded) block containing the execution node payload.
5858
* otherwise, return a blinded block containing the builder payload header.
5959
60-
Servers must support the following values of the comparison factor which encode common
60+
Servers must support the following values of the boost factor which encode common
6161
preferences:
6262
63-
* `builder_comparison_factor=0`: prefer the execution node payload unless an error makes it
63+
* `builder_boost_factor=0`: prefer the execution node payload unless an error makes it
6464
unviable.
65-
* `builder_comparison_factor=100`: default profit maximization mode; choose whichever
65+
* `builder_boost_factor=100`: default profit maximization mode; choose whichever
6666
payload pays more.
67-
* `builder_comparison_factor=2**64 - 1`: prefer the builder payload unless an error or
67+
* `builder_boost_factor=2**64 - 1`: prefer the builder payload unless an error or
6868
beacon node health check makes it unviable.
6969
7070
Servers should use saturating arithmetic or another technique to ensure that large values of
71-
the `builder_comparison_factor` do not trigger overflows or errors. If this parameter is
71+
the `builder_boost_factor` do not trigger overflows or errors. If this parameter is
7272
provided and the beacon node is not configured with a builder then the beacon node MUST
7373
respond with a full block, which the caller can choose to reject if it wishes. If this
7474
parameter is **not** provided then it should be treated as having the default value of 100.

0 commit comments

Comments
 (0)