Fixing Typo in validation error message (#55)

Signed-off-by: Christopher Hare <chris.hare@consensys.net>
pull/59/head
CJ Hare 5 years ago committed by GitHub
parent b79afb8865
commit 50c0764986
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      besu/src/main/java/org/hyperledger/besu/controller/BesuControllerBuilder.java

@ -190,7 +190,7 @@ public abstract class BesuControllerBuilder<C> {
checkNotNull(metricsSystem, "Missing metrics system");
checkNotNull(privacyParameters, "Missing privacy parameters");
checkNotNull(dataDirectory, "Missing data directory"); // Why do we need this?
checkNotNull(clock, "Mising clock");
checkNotNull(clock, "Missing clock");
checkNotNull(transactionPoolConfiguration, "Missing transaction pool configuration");
checkNotNull(nodeKeys, "Missing node keys");
checkNotNull(storageProvider, "Must supply a storage provider");

Loading…
Cancel
Save