diff --git a/prdoc/pr_5114.prdoc b/prdoc/pr_5114.prdoc new file mode 100644 index 0000000000000000000000000000000000000000..d57141490a3ed65d56f00a93ef8c1410f4361977 --- /dev/null +++ b/prdoc/pr_5114.prdoc @@ -0,0 +1,16 @@ +# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0 +# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json + +title: "Remove not-audited warning" + +doc: + - audience: Runtime Dev + description: | + Pallets `tx-pause` and `safe-mode` have passed audit, this just removes a warning in the docs + to not use them. + +crates: + - name: pallet-safe-mode + bump: patch + - name: pallet-tx-pause + bump: patch diff --git a/substrate/frame/safe-mode/src/lib.rs b/substrate/frame/safe-mode/src/lib.rs index 4be0776d6c1fa439da906ef239db072c26c68247..cfa9097b54121badf81bf6efa52afedbe96f6a06 100644 --- a/substrate/frame/safe-mode/src/lib.rs +++ b/substrate/frame/safe-mode/src/lib.rs @@ -19,10 +19,6 @@ //! //! Trigger for stopping all extrinsics outside of a specific whitelist. //! -//! ## WARNING -//! -//! NOT YET AUDITED. DO NOT USE IN PRODUCTION. -//! //! ## Pallet API //! //! See the [`pallet`] module for more information about the interfaces this pallet exposes, diff --git a/substrate/frame/tx-pause/src/lib.rs b/substrate/frame/tx-pause/src/lib.rs index 68f7a0312554d59fc2570393548dfa5a9e6f4a3e..962bfd744a658e43d183f7e543e96e2d20a049d2 100644 --- a/substrate/frame/tx-pause/src/lib.rs +++ b/substrate/frame/tx-pause/src/lib.rs @@ -19,10 +19,6 @@ //! //! Allows dynamic, chain-state-based pausing and unpausing of specific extrinsics via call filters. //! -//! ## WARNING -//! -//! NOT YET AUDITED. DO NOT USE IN PRODUCTION. -//! //! ## Pallet API //! //! See the [`pallet`] module for more information about the interfaces this pallet exposes,