From c1b146082474f765ef81ce174e862144e59682f8 Mon Sep 17 00:00:00 2001 From: Helder Pinto <12281088+helderjnpinto@users.noreply.github.com> Date: Mon, 23 Mar 2020 06:32:43 +0000 Subject: [PATCH] Fix typo (#527) Signed-off-by: hp Co-authored-by: CJ Hare --- .../ethereum/api/graphql/internal/response/GraphQLError.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/graphql/internal/response/GraphQLError.java b/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/graphql/internal/response/GraphQLError.java index 81f2be7686..6bd5a70839 100644 --- a/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/graphql/internal/response/GraphQLError.java +++ b/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/graphql/internal/response/GraphQLError.java @@ -39,7 +39,7 @@ public enum GraphQLError { REPLAY_PROTECTED_SIGNATURES_NOT_SUPPORTED( -32000, "Signatures with replay protection are not supported"), - // Provate Transaction Errors + // Private Transaction Errors PRIVATE_TRANSACTION_FAILED(-32000, "Private transaction failed"), PRIVATE_NONCE_TOO_LOW(-50100, "Private transaction nonce too low"), INCORRECT_PRIVATE_NONCE(-50100, "Private transaction nonce is incorrect");