Skip to content

Commit

Permalink
Added blacklisting transaction on the TxPool (#1743)
Browse files Browse the repository at this point in the history
Co-authored-by: Brandon Kite <brandonkite92@gmail.com>
  • Loading branch information
xgreenx and Voxelot authored Mar 9, 2024
1 parent b64be1a commit a31f64b
Show file tree
Hide file tree
Showing 11 changed files with 522 additions and 97 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,33 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Description of the upcoming release here.

## [Version 0.22.4]

### Added

- [#1743](https://github.com/FuelLabs/fuel-core/pull/1743): Added blacklisting of the transactions on the `TxPool` level.
```shell
--tx-blacklist-addresses <TX_BLACKLIST_ADDRESSES>
The list of banned addresses ignored by the `TxPool`

[env: TX_BLACKLIST_ADDRESSES=]

--tx-blacklist-coins <TX_BLACKLIST_COINS>
The list of banned coins ignored by the `TxPool`

[env: TX_BLACKLIST_COINS=]

--tx-blacklist-messages <TX_BLACKLIST_MESSAGES>
The list of banned messages ignored by the `TxPool`

[env: TX_BLACKLIST_MESSAGES=]

--tx-blacklist-contracts <TX_BLACKLIST_CONTRACTS>
The list of banned contracts ignored by the `TxPool`

[env: TX_BLACKLIST_CONTRACTS=]
```

## [Version 0.22.3]

### Added
Expand Down
48 changes: 24 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 24 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,33 +46,33 @@ homepage = "https://fuel.network/"
keywords = ["blockchain", "cryptocurrencies", "fuel-vm", "vm"]
license = "BUSL-1.1"
repository = "https://github.com/FuelLabs/fuel-core"
version = "0.22.3"
version = "0.22.4"

[workspace.dependencies]
# Workspace members
fuel-core = { version = "0.22.3", path = "./crates/fuel-core", default-features = false }
fuel-core-client-bin = { version = "0.22.3", path = "./bin/client" }
fuel-core-bin = { version = "0.22.3", path = "./bin/fuel-core" }
fuel-core-keygen = { version = "0.22.3", path = "./crates/keygen" }
fuel-core-keygen-bin = { version = "0.22.3", path = "./bin/keygen" }
fuel-core-chain-config = { version = "0.22.3", path = "./crates/chain-config", default-features = false }
fuel-core-client = { version = "0.22.3", path = "./crates/client" }
fuel-core-database = { version = "0.22.3", path = "./crates/database" }
fuel-core-metrics = { version = "0.22.3", path = "./crates/metrics" }
fuel-core-services = { version = "0.22.3", path = "./crates/services" }
fuel-core-consensus-module = { version = "0.22.3", path = "./crates/services/consensus_module" }
fuel-core-bft = { version = "0.22.3", path = "./crates/services/consensus_module/bft" }
fuel-core-poa = { version = "0.22.3", path = "./crates/services/consensus_module/poa" }
fuel-core-executor = { version = "0.22.3", path = "./crates/services/executor" }
fuel-core-importer = { version = "0.22.3", path = "./crates/services/importer" }
fuel-core-p2p = { version = "0.22.3", path = "./crates/services/p2p" }
fuel-core-producer = { version = "0.22.3", path = "./crates/services/producer" }
fuel-core-relayer = { version = "0.22.3", path = "./crates/services/relayer" }
fuel-core-sync = { version = "0.22.3", path = "./crates/services/sync" }
fuel-core-txpool = { version = "0.22.3", path = "./crates/services/txpool" }
fuel-core-storage = { version = "0.22.3", path = "./crates/storage" }
fuel-core-trace = { version = "0.22.3", path = "./crates/trace" }
fuel-core-types = { version = "0.22.3", path = "./crates/types", default-features = false }
fuel-core = { version = "0.22.4", path = "./crates/fuel-core", default-features = false }
fuel-core-client-bin = { version = "0.22.4", path = "./bin/client" }
fuel-core-bin = { version = "0.22.4", path = "./bin/fuel-core" }
fuel-core-keygen = { version = "0.22.4", path = "./crates/keygen" }
fuel-core-keygen-bin = { version = "0.22.4", path = "./bin/keygen" }
fuel-core-chain-config = { version = "0.22.4", path = "./crates/chain-config", default-features = false }
fuel-core-client = { version = "0.22.4", path = "./crates/client" }
fuel-core-database = { version = "0.22.4", path = "./crates/database" }
fuel-core-metrics = { version = "0.22.4", path = "./crates/metrics" }
fuel-core-services = { version = "0.22.4", path = "./crates/services" }
fuel-core-consensus-module = { version = "0.22.4", path = "./crates/services/consensus_module" }
fuel-core-bft = { version = "0.22.4", path = "./crates/services/consensus_module/bft" }
fuel-core-poa = { version = "0.22.4", path = "./crates/services/consensus_module/poa" }
fuel-core-executor = { version = "0.22.4", path = "./crates/services/executor" }
fuel-core-importer = { version = "0.22.4", path = "./crates/services/importer" }
fuel-core-p2p = { version = "0.22.4", path = "./crates/services/p2p" }
fuel-core-producer = { version = "0.22.4", path = "./crates/services/producer" }
fuel-core-relayer = { version = "0.22.4", path = "./crates/services/relayer" }
fuel-core-sync = { version = "0.22.4", path = "./crates/services/sync" }
fuel-core-txpool = { version = "0.22.4", path = "./crates/services/txpool" }
fuel-core-storage = { version = "0.22.4", path = "./crates/storage" }
fuel-core-trace = { version = "0.22.4", path = "./crates/trace" }
fuel-core-types = { version = "0.22.4", path = "./crates/types", default-features = false }
fuel-core-tests = { version = "0.0.0", path = "./tests" }
fuel-core-xtask = { version = "0.0.0", path = "./xtask" }

Expand Down
Loading

0 comments on commit a31f64b

Please sign in to comment.