Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 committed Jan 20, 2025
1 parent 50ad119 commit 069e821
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ where

let raw_header = signed_header.header;

// TODO: Encode header to byte array
self.0
.pub_key
.verify(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ where
+ HasDefaultSigner<Signer = Secp256k1KeyPair>
+ CanRaiseAsyncError<Encoding::Error>,
Counterparty: HasCreateClientPayloadType<Chain, CreateClientPayload = StarknetCreateClientPayload>
+ HasClientStateType<Chain>
+ HasConsensusStateType<Chain>
+ HasClientStateType<Chain, ClientState = WasmStarknetClientState>
+ HasConsensusStateType<Chain, ConsensusState = WasmStarknetConsensusState>
+ HasDefaultEncoding<AsBytes, Encoding = Encoding>,
Encoding: Async
+ CanConvert<WasmStarknetClientState, Any>
+ CanConvert<WasmStarknetConsensusState, Any>,
+ CanConvert<Counterparty::ClientState, Any>
+ CanConvert<Counterparty::ConsensusState, Any>,
{
async fn build_create_client_message(
chain: &Chain,
Expand Down

0 comments on commit 069e821

Please sign in to comment.