Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove pallet-free-tx #662

Merged
merged 11 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ At the moment this project **does not** adhere to
`validate` extrinsic changed to take a `ServerInfo` struct instead of individual fields.
- In [#661](https://github.com/entropyxyz/entropy-core/pull/661), the Relayer pallet was renamed to
the Registry pallet as this better describes the purpose of the pallet.
- In [#662](https://github.com/entropyxyz/entropy-core/pull/662), the Free Transaction pallet was
removed.

### Added
- Add ValidatorSubgroupRotated event ([#618](https://github.com/entropyxyz/entropy-core/pull/618))
Expand All @@ -45,6 +47,9 @@ At the moment this project **does not** adhere to
- Clean ups around Staking Extension's `validate()` extrinsic ([#659](https://github.com/entropyxyz/entropy-core/pull/659))
- Rename `pallet_relayer` to `pallet_registry` ([#661](https://github.com/entropyxyz/entropy-core/pull/661))

### Removed
- Remove `pallet-free-tx` ([#662](https://github.com/entropyxyz/entropy-core/pull/662))

## [0.0.10](https://github.com/entropyxyz/entropy-core/compare/release/v0.0.9...release/v0.0.10) - 2024-01-24

A lot of the changes introduced in this release are program related.
Expand Down
31 changes: 0 additions & 31 deletions Cargo.lock

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

Binary file modified crates/threshold-signature-server/entropy_metadata.scale
Binary file not shown.
1 change: 0 additions & 1 deletion node/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ pallet-transaction-payment-rpc ={ version="27.0.0" }
# Entropy Dependencies
entropy-runtime ={ version="0.0.10", path="../../runtime" }
entropy-shared ={ path="../../crates/shared", default-features=false, features=["wasm-no-std"] }
pallet-free-tx ={ version="0.0.10", path="../../pallets/free-tx" }
pallet-registry ={ version="0.0.10", path="../../pallets/registry" }
pallet-staking-extension={ version="0.0.10", path="../../pallets/staking" }

Expand Down
2 changes: 0 additions & 2 deletions node/cli/src/benchmarking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ pub fn create_benchmark_extrinsic(
frame_system::CheckNonce::<runtime::Runtime>::from(nonce),
frame_system::CheckWeight::<runtime::Runtime>::new(),
pallet_transaction_payment::ChargeTransactionPayment::<runtime::Runtime>::from(0),
pallet_free_tx::ValidateElectricityPayment::<runtime::Runtime>::new(),
pallet_registry::ValidateConfirmRegistered::<runtime::Runtime>::new(),
);

Expand All @@ -163,7 +162,6 @@ pub fn create_benchmark_extrinsic(
(),
(),
(),
(),
),
);
let signature = raw_payload.using_encoded(|e| sender.sign(e));
Expand Down
59 changes: 0 additions & 59 deletions pallets/free-tx/Cargo.toml

This file was deleted.

83 changes: 0 additions & 83 deletions pallets/free-tx/src/benchmarking.rs

This file was deleted.

Loading