Skip to content

Commit

Permalink
comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Mar 18, 2024
1 parent 5d1c02e commit 93ac685
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion yarn-project/circuit-types/src/messaging/inbox_leaf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class InboxLeaf {
public readonly blockNumber: bigint,
/** Index of the leaf in L2 block message subtree. */
public readonly index: bigint,
/** Leaf of the subtree. */
/** Leaf in the subtree. */
public readonly leaf: Fr,
) {}

Expand Down
4 changes: 2 additions & 2 deletions yarn-project/circuit-types/src/messaging/l1_actor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Fr } from '@aztec/foundation/fields';
import { BufferReader, serializeToBuffer } from '@aztec/foundation/serialize';

/**
* The sender of an L1 to L2 message.
* The sender of an L1 to L2 message or recipient of an L2 to L1 message.
*/
export class L1Actor {
constructor(
Expand All @@ -13,7 +13,7 @@ export class L1Actor {
*/
public readonly sender: EthAddress,
/**
* The chain id on which the message was sent.
* The chain id on which the message was sent (L1 -> L2) or on which the message will be received (L2 -> L1).
*/
public readonly chainId: number,
) {}
Expand Down

0 comments on commit 93ac685

Please sign in to comment.