Skip to content

Commit bbb7b27

Browse files
committed
work
1 parent b3191d2 commit bbb7b27

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/discof/rpcserver/fd_rpc_history.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@ fd_rpc_history_scan_block(fd_rpc_history_t * hist, ulong slot, ulong file_offset
202202
const uchar* raw = (const uchar *)blk_data + blockoff;
203203
ulong txn_sz = fd_txn_parse_core(raw, fd_ulong_min(blk_sz - blockoff, FD_TXN_MTU), txn_out, NULL, &pay_sz);
204204
if ( txn_sz == 0 || txn_sz > FD_TXN_MAX_SZ ) {
205-
FD_LOG_ERR( ( "failed to parse transaction %lu in microblock %lu", txn_idx, mblk ) );
205+
FD_LOG_WARNING( ( "failed to parse transaction %lu in microblock %lu at offset %lu", txn_idx, mblk, blockoff ) );
206+
return;
206207
}
207208
fd_txn_t * txn = (fd_txn_t *)txn_out;
208209

0 commit comments

Comments
 (0)