Skip to content

Commit f718ba8

Browse files
committed
chore: remove unnecessary clone
Signed-off-by: bkioshn <[email protected]>
1 parent 7584ff3 commit f718ba8

File tree

1 file changed

+1
-1
lines changed
  • hermes/apps/athena/modules/rbac-registration-indexer/src

1 file changed

+1
-1
lines changed

hermes/apps/athena/modules/rbac-registration-indexer/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl exports::hermes::cardano::event_on_block::Guest for RbacRegistrationCompone
121121
};
122122

123123
// ------- Extract and insert RBAC registrations into DB -------
124-
for reg in registrations.clone() {
124+
for reg in registrations {
125125
// Data needed for db
126126
let txn_id: Vec<u8> = reg.txn_hash().into();
127127
let catalyst_id: Option<String> =

0 commit comments

Comments
 (0)