@@ -20,7 +20,7 @@ use parquet_derive::{ParquetRecordWriter};
2020pub struct MoveResource {
2121 pub transaction_version : i64 ,
2222 pub write_set_change_index : i64 ,
23- pub transaction_block_height : i64 ,
23+ pub block_height : i64 ,
2424 pub name : String ,
2525 pub address : String ,
2626 pub resource_type : String ,
@@ -44,7 +44,7 @@ impl MoveResource {
4444 write_resource : & WriteResource ,
4545 write_set_change_index : i64 ,
4646 transaction_version : i64 ,
47- transaction_block_height : i64 ,
47+ block_height : i64 ,
4848 block_timestamp : chrono:: NaiveDateTime ,
4949 ) -> Self {
5050 let parsed_data = Self :: convert_move_struct_tag (
@@ -55,7 +55,7 @@ impl MoveResource {
5555 ) ;
5656 Self {
5757 transaction_version,
58- transaction_block_height ,
58+ block_height ,
5959 write_set_change_index,
6060 resource_type : write_resource. type_str . clone ( ) ,
6161 name : parsed_data. name . clone ( ) ,
@@ -75,7 +75,7 @@ impl MoveResource {
7575 delete_resource : & DeleteResource ,
7676 write_set_change_index : i64 ,
7777 transaction_version : i64 ,
78- transaction_block_height : i64 ,
78+ block_height : i64 ,
7979 block_timestamp : chrono:: NaiveDateTime ,
8080 ) -> Self {
8181 let parsed_data = Self :: convert_move_struct_tag (
@@ -86,7 +86,7 @@ impl MoveResource {
8686 ) ;
8787 Self {
8888 transaction_version,
89- transaction_block_height ,
89+ block_height ,
9090 write_set_change_index,
9191 resource_type : delete_resource. type_str . clone ( ) ,
9292 name : parsed_data. name . clone ( ) ,
0 commit comments