Skip to content

Commit 498c7ad

Browse files
two-heartmmcgee-jump
authored andcommitted
bundle: fix crank logs
1 parent 19493bf commit 498c7ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/disco/bundle/fd_bundle_crank.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,15 +349,15 @@ fd_bundle_crank_generate( fd_bundle_crank_gen_t * gen,
349349
locks to the system program get demoted. */
350350
fd_bundle_crank_gen_pidx_t * identity_pidx = pidx_map_insert( gen->map, *(fd_acct_addr_t *)identity );
351351
if( FD_UNLIKELY( !identity_pidx ) ) {
352-
FD_LOG_WARNING(( "Indentity was already in map. Refusing to crank bundles." ));
352+
FD_LOG_WARNING(( "Identity was already in map. Refusing to crank bundles." ));
353353
return ULONG_MAX;
354354
}
355355
identity_pidx->idx = 0UL;
356356

357357
fd_bundle_crank_gen_pidx_t * new_tr_pidx = pidx_map_insert( gen->map, *(fd_acct_addr_t *)gen->crank3->new_tip_receiver );
358358
if( FD_UNLIKELY( !new_tr_pidx ) ) {
359359
pidx_map_remove( gen->map, identity_pidx );
360-
FD_LOG_WARNING(( "New block builder was already in map. Refusing to crank bundles." ));
360+
FD_LOG_WARNING(( "New tip receiver was already in map. Refusing to crank bundles." ));
361361
return ULONG_MAX;
362362
}
363363
new_tr_pidx->idx = 13UL;

0 commit comments

Comments
 (0)