We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d93b646 commit 00ab69cCopy full SHA for 00ab69c
framework/src/main/java/org/tron/core/services/jsonrpc/TronJsonRpcImpl.java
@@ -193,13 +193,13 @@ public static void handleBLockFilter(BlockFilterCapsule blockFilterCapsule) {
193
it = getBlockFilter2ResultFull().entrySet().iterator();
194
}
195
196
+ String blockHash = ByteArray.toJsonHex(blockFilterCapsule.getBlockHash());
197
while (it.hasNext()) {
198
Entry<String, BlockFilterAndResult> entry = it.next();
199
if (entry.getValue().isExpire()) {
200
it.remove();
201
continue;
202
- String blockHash = ByteArray.toJsonHex(blockFilterCapsule.getBlockHash());
203
String finalBlockHash = blockHash;
204
try {
205
// compare with hashcode() first, then with equals(). If not exist, put it.
0 commit comments