mirror of https://github.com/hyperledger/besu
Fine tune already seen txs tracker when a tx is removed from the pool (#7755)
Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>pull/7782/head
parent
5469b52eb5
commit
dfbfb96f28
@ -0,0 +1,32 @@ |
||||
/* |
||||
* Copyright contributors to Hyperledger Besu. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations under the License. |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
package org.hyperledger.besu.ethereum.eth.transactions; |
||||
|
||||
/** The reason why a pending tx has been removed */ |
||||
public interface RemovalReason { |
||||
/** |
||||
* Return a label that identify this reason to be used in the metric system. |
||||
* |
||||
* @return a label |
||||
*/ |
||||
String label(); |
||||
|
||||
/** |
||||
* Return true if we should stop tracking the tx as already seen |
||||
* |
||||
* @return true if no more tracking is needed |
||||
*/ |
||||
boolean stopTracking(); |
||||
} |
@ -0,0 +1,45 @@ |
||||
/* |
||||
* Copyright contributors to Hyperledger Besu. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations under the License. |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
package org.hyperledger.besu.ethereum.eth.transactions.sorter; |
||||
|
||||
import org.hyperledger.besu.ethereum.eth.transactions.RemovalReason; |
||||
|
||||
import java.util.Locale; |
||||
|
||||
/** The reason why a pending tx has been removed */ |
||||
enum SequencedRemovalReason implements RemovalReason { |
||||
EVICTED(true), |
||||
TIMED_EVICTION(true), |
||||
REPLACED(false), |
||||
INVALID(false); |
||||
|
||||
private final String label; |
||||
private final boolean stopTracking; |
||||
|
||||
SequencedRemovalReason(final boolean stopTracking) { |
||||
this.label = name().toLowerCase(Locale.ROOT); |
||||
this.stopTracking = stopTracking; |
||||
} |
||||
|
||||
@Override |
||||
public String label() { |
||||
return label; |
||||
} |
||||
|
||||
@Override |
||||
public boolean stopTracking() { |
||||
return stopTracking; |
||||
} |
||||
} |
Loading…
Reference in new issue