···69697070 for commit_op in payload['ops']:
7171 op = commit_op.copy()
7272+ record = None
7273 if op['cid'] is not None:
7374 op['cid'] = op['cid'].encode('base32')
7474- op['record'] = car_parsed.blocks[op['cid']]
7575+ record = car_parsed.blocks.get(op['cid'])
7676+7777+ if record is not None:
7878+ op['record'] = record
7979+ else:
8080+ continue
8181+7582 yield message, op