@@ -849,6 +849,7 @@ func (d *DcrtimeStore) verifyBatchV2(w http.ResponseWriter, r *http.Request) {
849849 for _ , ts := range tsr {
850850 vt := v2.VerifyTimestamp {
851851 ServerTimestamp : ts .Timestamp ,
852+ FlushTimestamp : ts .FlushTimestamp ,
852853 CollectionInformation : v2.CollectionInformation {
853854 ChainTimestamp : ts .AnchoredTimestamp ,
854855 Confirmations : ts .Confirmations ,
@@ -913,6 +914,7 @@ func (d *DcrtimeStore) verifyBatchV2(w http.ResponseWriter, r *http.Request) {
913914 vd := v2.VerifyDigest {
914915 Digest : hex .EncodeToString (dr .Digest [:]),
915916 ServerTimestamp : dr .Timestamp ,
917+ FlushTimestamp : dr .FlushTimestamp ,
916918 ChainInformation : v2.ChainInformation {
917919 Confirmations : dr .Confirmations ,
918920 MinConfirmations : dr .MinConfirmations ,
@@ -1102,6 +1104,7 @@ func (d *DcrtimeStore) verifyV2(w http.ResponseWriter, r *http.Request) {
11021104 ts := tsr [len (tsr )- 1 ]
11031105 vt := v2.VerifyTimestamp {
11041106 ServerTimestamp : ts .Timestamp ,
1107+ FlushTimestamp : ts .FlushTimestamp ,
11051108 CollectionInformation : v2.CollectionInformation {
11061109 ChainTimestamp : ts .AnchoredTimestamp ,
11071110 Confirmations : ts .Confirmations ,
@@ -1167,6 +1170,7 @@ func (d *DcrtimeStore) verifyV2(w http.ResponseWriter, r *http.Request) {
11671170 vd := v2.VerifyDigest {
11681171 Digest : hex .EncodeToString (dr .Digest [:]),
11691172 ServerTimestamp : dr .Timestamp ,
1173+ FlushTimestamp : dr .FlushTimestamp ,
11701174 ChainInformation : v2.ChainInformation {
11711175 Confirmations : dr .Confirmations ,
11721176 MinConfirmations : dr .MinConfirmations ,
0 commit comments