Skip to content

Commit

Permalink
make ChainBlockExtrinsic cloneable (#778)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhijeetbhagat authored Jan 16, 2023
1 parent d8c2e16 commit 25245ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subxt/src/rpc/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pub type ConsensusEngineId = [u8; 4];
pub type EncodedJustification = Vec<u8>;

/// Bytes representing an extrinsic in a [`ChainBlock`].
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct ChainBlockExtrinsic(pub Vec<u8>);

impl<'a> ::serde::Deserialize<'a> for ChainBlockExtrinsic {
Expand Down

0 comments on commit 25245ad

Please sign in to comment.