File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -208,6 +208,7 @@ public String toString() {
208208 .add ("tlsConfiguration" , tlsConfiguration )
209209 .add ("httpTimeoutSec" , httpTimeoutSec )
210210 .add ("maxActiveConnections" , maxActiveConnections )
211+ .add ("maxBatchSize" , maxBatchSize )
211212 .toString ();
212213 }
213214
@@ -228,7 +229,8 @@ public boolean equals(final Object o) {
228229 && Objects .equals (rpcApis , that .rpcApis )
229230 && Objects .equals (hostsAllowlist , that .hostsAllowlist )
230231 && Objects .equals (authenticationCredentialsFile , that .authenticationCredentialsFile )
231- && Objects .equals (authenticationPublicKeyFile , that .authenticationPublicKeyFile );
232+ && Objects .equals (authenticationPublicKeyFile , that .authenticationPublicKeyFile )
233+ && Objects .equals (maxBatchSize , that .maxBatchSize );
232234 }
233235
234236 @ Override
@@ -242,7 +244,8 @@ public int hashCode() {
242244 hostsAllowlist ,
243245 authenticationEnabled ,
244246 authenticationCredentialsFile ,
245- authenticationPublicKeyFile );
247+ authenticationPublicKeyFile ,
248+ maxBatchSize );
246249 }
247250
248251 public int getMaxActiveConnections () {
You can’t perform that action at this time.
0 commit comments