From 7c12490ab4fa9d75dbdd6c3ae3fd93f434da8a71 Mon Sep 17 00:00:00 2001 From: Snazzy Date: Sun, 7 Jul 2024 02:42:33 +0800 Subject: [PATCH 1/3] fix wiki link Signed-off-by: Snazzy --- .../java/org/hyperledger/besu/plugin/services/BesuEvents.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/BesuEvents.java b/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/BesuEvents.java index ab9c4eb782d..5d55c29f769 100644 --- a/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/BesuEvents.java +++ b/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/BesuEvents.java @@ -258,7 +258,7 @@ interface LogListener { /** * Invoked for each log (both added and removed) when a new block is added to the blockchain. * - * @param logWithMetadata the log with associated metadata. see https://eth.wiki/json-rpc/API + * @param logWithMetadata the log with associated metadata. see https://ethereum.org/en/developers/docs/apis/json-rpc/ */ void onLogEmitted(LogWithMetadata logWithMetadata); } From 49a9e9e963195a5223852550cb3b23f30dcbec40 Mon Sep 17 00:00:00 2001 From: Snazzy Date: Tue, 9 Jul 2024 10:40:58 +0800 Subject: [PATCH 2/3] fix format Signed-off-by: Snazzy --- .../java/org/hyperledger/besu/plugin/services/BesuEvents.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/BesuEvents.java b/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/BesuEvents.java index 5d55c29f769..110a66dee54 100644 --- a/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/BesuEvents.java +++ b/plugin-api/src/main/java/org/hyperledger/besu/plugin/services/BesuEvents.java @@ -258,7 +258,8 @@ interface LogListener { /** * Invoked for each log (both added and removed) when a new block is added to the blockchain. * - * @param logWithMetadata the log with associated metadata. see https://ethereum.org/en/developers/docs/apis/json-rpc/ + * @param logWithMetadata the log with associated metadata. see + * https://ethereum.org/en/developers/docs/apis/json-rpc/ */ void onLogEmitted(LogWithMetadata logWithMetadata); } From edb50aec6c4c1968651dc74415692fa8eb37b434 Mon Sep 17 00:00:00 2001 From: Snazzy Date: Tue, 9 Jul 2024 21:00:58 +0800 Subject: [PATCH 3/3] change knownHash Signed-off-by: Snazzy --- plugin-api/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-api/build.gradle b/plugin-api/build.gradle index dbbb5e4f2bf..d55efa7fc99 100644 --- a/plugin-api/build.gradle +++ b/plugin-api/build.gradle @@ -70,7 +70,7 @@ Calculated : ${currentHash} tasks.register('checkAPIChanges', FileStateChecker) { description = "Checks that the API for the Plugin-API project does not change without deliberate thought" files = sourceSets.main.allJava.files - knownHash = 'Q6EK5By3BNKNa/JYqYjFw43VXWL0KVBUV3dGEQBjZ70=' + knownHash = 'yH50m+z1tnzshJQPdwR86pb2EU3m6iZxwkqoy/5spcs=' } check.dependsOn('checkAPIChanges')