diff --git a/src/page.h b/src/page.h index f16d033..191b014 100644 --- a/src/page.h +++ b/src/page.h @@ -2403,7 +2403,7 @@ public: = blk_timestamp_utc_start + 59; all_possible_tx_hashes.push_back( - make_pair("tx_public_keys", vector{})); + make_pair("tx_in_the_minute", vector{})); vector& txs_found_ref = all_possible_tx_hashes.back().second; @@ -2436,7 +2436,7 @@ public: = blk_timestamp_utc_start + 3599; all_possible_tx_hashes.push_back( - make_pair("tx_public_keys", vector{})); + make_pair("tx_in_the_hour", vector{})); vector& txs_found_ref = all_possible_tx_hashes.back().second; @@ -2469,7 +2469,7 @@ public: = blk_timestamp_utc_start + 86399; all_possible_tx_hashes.push_back( - make_pair("tx_public_keys", vector{})); + make_pair("tx_in_the_day", vector{})); vector& txs_found_ref = all_possible_tx_hashes.back().second; diff --git a/src/templates/search_results.html b/src/templates/search_results.html index ed49581..123b476 100644 --- a/src/templates/search_results.html +++ b/src/templates/search_results.html @@ -3,7 +3,7 @@ {{#no_results}}

Nothing in the blockchain has been found that matches the search term :-(

-
Note: there might be 1-2 min delay betweem my blockchain and others
+
Note: there might be 1-2 min delay between my blockchain and others
{{/no_results}} {{#to_many_results}} @@ -127,3 +127,55 @@ {{/has_output_public_keys_based_on_amount_idx}} + + +
+ + {{#has_tx_in_the_minute}} + +

Transactions performed in the given minute

+ + + {{>tx_table_head}} + {{#tx_in_the_minute}} + {{>tx_table_row}} + {{/tx_in_the_minute}} +
+ + {{/has_tx_in_the_minute}} + +
+ +
+ + {{#has_tx_in_the_hour}} + +

Transactions performed in the given hour

+ + + {{>tx_table_head}} + {{#tx_in_the_hour}} + {{>tx_table_row}} + {{/tx_in_the_hour}} +
+ + {{/has_tx_in_the_hour}} + +
+ +
+ + {{#has_tx_in_the_day}} + +

Transactions performed in the given day

+ + + {{>tx_table_head}} + {{#tx_in_the_day}} + {{>tx_table_row}} + {{/tx_in_the_day}} +
+ + {{/has_tx_in_the_day}} + +