Skip to content

Commit 51432f4

Browse files
committed
runtime: fix account meta null check
1 parent dbae51c commit 51432f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/flamenco/runtime/info/fd_instr_info.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ fd_instr_info_sum_account_lamports( fd_instr_info_t const * instr,
6767
ushort idx_in_txn = instr->accounts[i].index_in_transaction;
6868
fd_accdb_rw_t const * ref = &txn_out->accounts.account[ idx_in_txn ];
6969

70-
if( !ref || instr->is_duplicate[i] ) {
70+
if( instr->is_duplicate[i] ) {
7171
continue;
7272
}
7373

0 commit comments

Comments
 (0)