Add block_time to getConfirmedSignaturesForAddress2 and getConfirmedTransaction (#14572)

* add block_time to get_confirmed_signatures_for_address2 and protobuf implementation for tx_by_addr

* add tests for convert

* update cargo lock

* run cargo format after rebase

* introduce legacy TransactionByAddrInfo

* move LegacyTransactionByAddrInfo back to storage-bigtable
This commit is contained in:
Josh
2021-01-20 22:10:35 -08:00
committed by GitHub
parent 447e3de1f2
commit 1de6d28eaf
10 changed files with 1219 additions and 20 deletions

View File

@ -12,5 +12,11 @@ fn main() -> Result<(), std::io::Error> {
.build_server(false)
.format(true)
.out_dir(&out_dir)
.compile(&[proto_files.join("confirmed_block.proto")], &[proto_files])
.compile(
&[
proto_files.join("confirmed_block.proto"),
proto_files.join("transaction_by_addr.proto"),
],
&[proto_files],
)
}