Skip to content

Commit

Permalink
Fix log on initializing external block builder (#4267)
Browse files Browse the repository at this point in the history
## Issue Addressed

#4266 

## Proposed Changes

- Log `Using external block builder` instead of `Connected to external block builder` on its initialization to resolve the confusion (there's no actual connection there)

## Additional Info

The log is mentioned in builders docs, so it's changed there too.
  • Loading branch information
nkryuchkov committed May 9, 2023
1 parent d64be0d commit c7c5106
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion beacon_node/execution_layer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ impl<T: EthSpec> ExecutionLayer<T> {

info!(
log,
"Connected to external block builder";
"Using external block builder";
"builder_url" => ?url,
"builder_profit_threshold" => builder_profit_threshold,
"local_user_agent" => builder_client.get_user_agent(),
Expand Down
2 changes: 1 addition & 1 deletion book/src/builders.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ You can check that your builder is configured correctly by looking for these log
On start-up, the beacon node will log if a builder is configured:

```
INFO Connected to external block builder
INFO Using external block builder
```

At regular intervals the validator client will log that it successfully registered its validators
Expand Down

0 comments on commit c7c5106

Please sign in to comment.