From f973f95a92318f5fe575d83400c7bdc6ed9c1e57 Mon Sep 17 00:00:00 2001 From: Sally MacFarlane Date: Tue, 20 Apr 2021 11:56:12 +1000 Subject: [PATCH] ignore privateFor for private tx estimation (#2160) Signed-off-by: Sally MacFarlane --- .../api/jsonrpc/internal/parameters/JsonCallParameter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/parameters/JsonCallParameter.java b/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/parameters/JsonCallParameter.java index cb4d72c96c..9b547530ba 100644 --- a/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/parameters/JsonCallParameter.java +++ b/ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/internal/parameters/JsonCallParameter.java @@ -31,7 +31,7 @@ import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; import org.apache.tuweni.bytes.Bytes; -@JsonIgnoreProperties("nonce") +@JsonIgnoreProperties({"nonce", "privateFor"}) public class JsonCallParameter extends CallParameter { private final boolean strict;