Release v0.27.0 (#824)

* Bump substrate deps

* Bump to 0.27.0

* update changelog

* Clone and Debug on TxPayload types

* move item to Changed

* remove chore entirely
This commit is contained in:
James Wilson
2023-02-13 16:13:17 +00:00
committed by GitHub
parent 1092e8b26e
commit 7b0e06cf8a
12 changed files with 337 additions and 260 deletions
+2
View File
@@ -58,6 +58,7 @@ pub struct ValidationDetails<'a> {
}
/// This represents a statically generated transaction payload.
#[derive(Clone, Debug)]
pub struct StaticTxPayload<CallData> {
pallet_name: &'static str,
call_name: &'static str,
@@ -123,6 +124,7 @@ impl<CallData: Encode> TxPayload for StaticTxPayload<CallData> {
}
/// This represents a dynamically generated transaction payload.
#[derive(Clone, Debug)]
pub struct DynamicTxPayload<'a> {
pallet_name: Cow<'a, str>,
call_name: Cow<'a, str>,