Skip to content

Commit 260cb95

Browse files
committed
logging improvements
1 parent 3575a61 commit 260cb95

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ This will increment the flashblock number before the start of every flashblock a
6363
To run op-rbuilder with flashtestations:
6464

6565
```bash
66-
cargo run -p op-rbuilder --bin op-rbuilder --features=flashtestations -- node \
66+
cargo run -p op-rbuilder --bin op-rbuilder -- node \
6767
--chain /path/to/chain-config.json \
6868
--http \
6969
--authrpc.port 9551 \
@@ -73,7 +73,7 @@ cargo run -p op-rbuilder --bin op-rbuilder --features=flashtestations -- node \
7373
--flashtestations.funding-amount 0.01 \ # amount in ETH to fund the TEE generated key
7474
--flashtestations.funding-key secret-key \ # funding key for the TEE key
7575
--flashtestations.registry-address 0xFlashtestationsRegistryAddress \
76-
flashtestations.builder-policy-address 0xBuilderPolicyAddress
76+
--flashtestations.builder-policy-address 0xBuilderPolicyAddress
7777
```
7878

7979
Note that `--rollup.builder-secret-key` must be set and funded in order for the flashtestations key to be funded and submit the attestation on-chain.

crates/op-rbuilder/src/flashtestations/attestation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ impl RemoteAttestationProvider {
3333
let report_data_hex = hex::encode(report_data);
3434
let url = format!("{}/{}", self.service_url, report_data_hex);
3535

36-
info!(target: "flashtestations", url = url, "fetching quote in debug mode");
36+
info!(target: "flashtestations", url = url, "fetching quote from remote attestation provider");
3737

3838
let response = self
3939
.client

0 commit comments

Comments
 (0)