Skip to content

Commit 679e95d

Browse files
committed
store: Use push_sql instead of push_identifier
1 parent 26e2858 commit 679e95d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

store/postgres/src/transaction_receipt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ from (
7878
select jsonb_array_elements(data -> 'transaction_receipts') as receipt
7979
from"#,
8080
);
81-
out.push_identifier(&self.blocks_table_name)?;
81+
out.push_sql(&self.blocks_table_name);
8282
out.push_sql(" where hash = ");
8383
out.push_bind_param::<Binary, _>(&self.block_hash)?;
8484
out.push_sql(") as temp;");

0 commit comments

Comments
 (0)