mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21:02 +00:00
439af98e55
* Moving `pallet-asset-tx-payment` from cumulus * move pallet-asset-tx-payment into transaction payment directory * cargo +nightly fmt * Adding `pallet-asset-tx-payment` to node runtime I had to change the Balance type to u128. Also harmonised that pallet's version * Updating cargo.lock after merge * forgot this * Adding tx-payment signature * Missed one more * `transaction-payment` replaced in`SignedExtension` by `asset-tx-payment` and not added * Fixing benches * add test to verify that we don't charge on post-dispatch if we didn't on pre-dispatch * add (failing) test for asset tx payment of unsigned extrinsics * fix test by removing debug_assert * cargo +nightly fmt * typo in `Cargo.lock` * Object defined twice in lock file * cargo update * remove todo * Apply formatting suggestions from code review Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Refactoring `post_dispatch` of `asset-tx-payment` to reuse `post_dispatch` of `transaction-payment` if the fee asset is native Removing unneeded imports. * Removing redundant `TODO` * Reverting an accidental bump of `impl-serde` from `0.3.1` to `0.3.2` * Revert unneeded changes to `cargo.lock` * Update frame/transaction-payment/asset-tx-payment/src/payment.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Fixing cargo fmt Reverting changes which broke cargo fmt Co-authored-by: Alexander Popiak <alexander.popiak@parity.io> Co-authored-by: Alexander Popiak <alexander.popiak@gmail.com> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com>
56 lines
1.9 KiB
TOML
56 lines
1.9 KiB
TOML
[package]
|
|
name = "pallet-asset-tx-payment"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "pallet to manage transaction payments in assets"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
# Substrate dependencies
|
|
sp-core = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/core" }
|
|
sp-io = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/io" }
|
|
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/runtime" }
|
|
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/std" }
|
|
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
|
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = ".." }
|
|
|
|
# Other dependencies
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.126", optional = true }
|
|
|
|
[dev-dependencies]
|
|
smallvec = "1.7.0"
|
|
serde_json = "1.0.68"
|
|
|
|
sp-storage = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/storage" }
|
|
|
|
pallet-assets = { version = "4.0.0-dev", path = "../../assets" }
|
|
pallet-authorship = { version = "4.0.0-dev", path = "../../authorship" }
|
|
pallet-balances = { version = "4.0.0-dev", path = "../../balances" }
|
|
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde",
|
|
"codec/std",
|
|
"sp-std/std",
|
|
"sp-runtime/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"sp-io/std",
|
|
"sp-core/std",
|
|
"pallet-transaction-payment/std",
|
|
]
|
|
try-runtime = ["frame-support/try-runtime"]
|