Skip to content

Commit 4d058e7

Browse files
committed
chore(import fix)
Signed-off-by: Usman Saleem <usman@usmans.info>
1 parent fb7be98 commit 4d058e7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

ethereum/p2p/src/main/java/org/hyperledger/besu/ethereum/p2p/discovery/discv5/PeerDiscoveryAgentV5.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
import org.ethereum.beacon.discovery.AddressAccessPolicy;
4949
import org.ethereum.beacon.discovery.DiscoverySystemBuilder;
5050
import org.ethereum.beacon.discovery.MutableDiscoverySystem;
51+
import org.ethereum.beacon.discovery.crypto.Signer;
5152
import org.ethereum.beacon.discovery.schema.NodeRecord;
5253
import org.slf4j.Logger;
5354
import org.slf4j.LoggerFactory;
@@ -440,10 +441,10 @@ private NodeRecord initializeLocalNodeRecord(final int tcpPort) {
440441
}
441442

442443
/**
443-
* An implementation of the {@link org.ethereum.beacon.discovery.crypto.Signer} interface that
444-
* uses a local {@link NodeKey} for signing and key agreement.
444+
* An implementation of the {@link Signer} interface that uses a local {@link NodeKey} for signing
445+
* and key agreement.
445446
*/
446-
private static class LocalNodeKeySigner implements org.ethereum.beacon.discovery.crypto.Signer {
447+
private static class LocalNodeKeySigner implements Signer {
447448
private final SignatureAlgorithm signatureAlgorithm = SignatureAlgorithmFactory.getInstance();
448449

449450
private final NodeKey nodeKey;

0 commit comments

Comments
 (0)