Skip to content

Commit

Permalink
fix typo in eth_relayer
Browse files Browse the repository at this point in the history
  • Loading branch information
pscott committed Jun 4, 2024
1 parent c1fda4f commit 7ab4666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starknet/src/execution_strategies/eth_relayer.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ mod EthRelayerExecutionStrategy {
// Serialize the payload to be sent to the L1 execution strategy
let mut l1_payload = array![];
space.serialize(ref l1_payload);
proposal_id.serialize(ref payload);
proposal_id.serialize(ref l1_payload);
proposal.serialize(ref l1_payload);
votes_for.serialize(ref l1_payload);
votes_against.serialize(ref l1_payload);
Expand Down

0 comments on commit 7ab4666

Please sign in to comment.