Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use crate::{
/// proofs and cross-chain operations. The instruction also records the MMR's total leaf count
/// needed for proof verification at that checkpoint.
#[derive(Accounts)]
#[instruction(output_root: [u8; 32], base_block_number: u64, total_leaf_count: u64, _signatures: Vec<[u8;65]>)]
#[instruction(output_root: [u8; 32], base_block_number: u64)]
pub struct RegisterOutputRoot<'info> {
/// Payer funds the account creation. Authorization is enforced via oracle EVM signature.
#[account(mut)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ use crate::{
/// message is created to transfer the equivalent tokens and execute the call on Base. The
/// call buffer account is consumed (closed) and its rent is returned to the owner.
#[derive(Accounts)]
#[instruction(_to: [u8; 20], _amount: u64)]
pub struct BridgeWrappedTokenWithBufferedCall<'info> {
/// The account that pays for transaction fees, gas fees, and outgoing message account creation.
/// Must be mutable to deduct lamports for account rent and gas fees (sent to `gas_fee_receiver`).
Expand Down