Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tbenr committed Dec 1, 2021
1 parent 87447e8 commit 061bbc6
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,6 @@ public static final class BlockOptions {
private Optional<Eth1Data> eth1Data = Optional.empty();
private Optional<List<Bytes>> transactions = Optional.empty();
private Optional<Bytes32> terminalBlockHash = Optional.empty();
private Optional<ExecutionPayload> executionPayload = Optional.empty();

private BlockOptions() {}

Expand Down Expand Up @@ -550,11 +549,6 @@ public BlockOptions setTerminalBlockHash(Bytes32 blockHash) {
return this;
}

public BlockOptions setExecutionPayload(ExecutionPayload executionPayload) {
this.executionPayload = Optional.of(executionPayload);
return this;
}

private List<Attestation> getAttestations() {
return attestations;
}
Expand All @@ -570,9 +564,5 @@ public Optional<List<Bytes>> getTransactions() {
public Optional<Bytes32> getTerminalBlockHash() {
return terminalBlockHash;
}

public Optional<ExecutionPayload> getExecutionPayload() {
return executionPayload;
}
}
}

0 comments on commit 061bbc6

Please sign in to comment.