mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 04:41:02 +00:00
Break appcrypto dep cycle (#4347)
* move application-crypto tests into seperate crate * Fix crate name, update script and add docs * pressing 'save' helps * remove useless lines * adding header * split into actual modules
This commit is contained in:
committed by
Bastian Köcher
parent
8721d98dd6
commit
f0cc89a4b0
@@ -45,7 +45,7 @@ pub use traits::*;
|
||||
/// Application-specific types whose identifier is `$key_type`.
|
||||
///
|
||||
/// ```rust
|
||||
///# use sc_application_crypto::{app_crypto, wrap, ed25519, KeyTypeId};
|
||||
///# use sp_application_crypto::{app_crypto, wrap, ed25519, KeyTypeId};
|
||||
/// // Declare a new set of crypto types using Ed25519 logic that identifies as `KeyTypeId`
|
||||
/// // of value `b"fuba"`.
|
||||
/// app_crypto!(ed25519, KeyTypeId(*b"_uba"));
|
||||
@@ -66,7 +66,7 @@ macro_rules! app_crypto {
|
||||
/// Application-specific types whose identifier is `$key_type`.
|
||||
///
|
||||
/// ```rust
|
||||
///# use sc_application_crypto::{app_crypto, wrap, ed25519, KeyTypeId};
|
||||
///# use sp_application_crypto::{app_crypto, wrap, ed25519, KeyTypeId};
|
||||
/// // Declare a new set of crypto types using Ed25519 logic that identifies as `KeyTypeId`
|
||||
/// // of value `b"fuba"`.
|
||||
/// app_crypto!(ed25519, KeyTypeId(*b"_uba"));
|
||||
@@ -390,7 +390,7 @@ macro_rules! app_crypto_signature_common {
|
||||
/// Implement bidirectional `From` and on-way `AsRef`/`AsMut` for two types, `$inner` and `$outer`.
|
||||
///
|
||||
/// ```rust
|
||||
/// sc_application_crypto::wrap! {
|
||||
/// sp_application_crypto::wrap! {
|
||||
/// pub struct Wrapper(u32);
|
||||
/// }
|
||||
/// ```
|
||||
|
||||
Reference in New Issue
Block a user