Skip to content

Commit

Permalink
use starknet instead of syscall for sendingn l1 message
Browse files Browse the repository at this point in the history
  • Loading branch information
pscott committed Aug 15, 2024
1 parent cc933fe commit 77aad71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions starknet/src/execution_strategies/eth_relayer.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ mod EthRelayerExecutionStrategy {
votes_abstain.serialize(ref l1_payload);
l1_execution_hash.serialize(ref l1_payload);

syscalls::send_message_to_l1_syscall(l1_execution_strategy.into(), l1_payload.span())
.unwrap_syscall();
starknet::send_message_to_l1_syscall(l1_execution_strategy.into(), l1_payload.span())
.unwrap();
}

fn get_strategy_type(self: @ContractState) -> felt252 {
Expand Down

0 comments on commit 77aad71

Please sign in to comment.