Skip to content

Commit a26e6a1

Browse files
committed
resolve PR comments
1 parent e10d130 commit a26e6a1

File tree

1 file changed

+2
-9
lines changed
  • crates/asm/subprotocols/bridge-v1/src/state

1 file changed

+2
-9
lines changed

crates/asm/subprotocols/bridge-v1/src/state/deposit.rs

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -121,20 +121,13 @@ impl DepositEntry {
121121
&self.output
122122
}
123123

124-
/// Returns the historical set of operators that formed the N/N multisig.
125-
///
126-
/// # Returns
127-
///
128-
/// A reference to the operator bitmap that contains the operators active for this deposit.
124+
/// Returns the reference to the bitmap of historical set of operators that formed the N/N
125+
/// multisig.
129126
pub fn notary_operators(&self) -> &OperatorBitmap {
130127
&self.notary_operators
131128
}
132129

133130
/// Returns the indices of operators that formed the N/N multisig for this deposit.
134-
///
135-
/// # Returns
136-
///
137-
/// Vector containing [`OperatorIdx`] for operators that were active for this deposit.
138131
pub fn notary_operators_indices(&self) -> Vec<OperatorIdx> {
139132
self.notary_operators.to_indices()
140133
}

0 commit comments

Comments
 (0)