We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae6232a commit 98404c4Copy full SHA for 98404c4
src/discof/writer/fd_writer_tile.c
@@ -267,9 +267,6 @@ after_frag( fd_writer_tile_ctx_t * ctx,
267
268
if( FD_LIKELY( txn_ctx->flags & FD_TXN_P_FLAGS_EXECUTE_SUCCESS ) ) {
269
FD_SPAD_FRAME_BEGIN( ctx->spad ) {
270
- if( FD_UNLIKELY( !ctx->bank ) ) {
271
- FD_LOG_CRIT(( "No bank for slot %lu", txn_ctx->slot ));
272
- }
273
274
fd_runtime_finalize_txn(
275
ctx->funk,
@@ -288,6 +285,8 @@ after_frag( fd_writer_tile_ctx_t * ctx,
288
285
/* Spin for the replay tile to ack the previous txn done. */
289
286
FD_SPIN_PAUSE();
290
287
}
+ } else {
+ fd_banks_unlock( ctx->banks );
291
292
/* Notify the replay tile. */
293
fd_fseq_update( ctx->fseq, fd_writer_fseq_set_txn_done( msg->txn_id, msg->exec_tile_id ) );
0 commit comments