diff --git a/public/include/pages/statistics/blocks.inc.php b/public/include/pages/statistics/blocks.inc.php
index 69bbade7..e83aa8a8 100644
--- a/public/include/pages/statistics/blocks.inc.php
+++ b/public/include/pages/statistics/blocks.inc.php
@@ -13,5 +13,5 @@ $aBlockData = $aBlocksFoundData[0];
$smarty->assign("BLOCKSFOUND", $aBlocksFoundData);
$smarty->assign("BLOCKLIMIT", $iLimit);
-$smarty->assign("CONTENT", "blocks_found.tpl");
+$smarty->assign("CONTENT", "default.tpl");
?>
diff --git a/public/templates/mmcFE/statistics/blocks/default.tpl b/public/templates/mmcFE/statistics/blocks/default.tpl
new file mode 100644
index 00000000..1511a46b
--- /dev/null
+++ b/public/templates/mmcFE/statistics/blocks/default.tpl
@@ -0,0 +1,70 @@
+{include file="global/block_header.tpl" BLOCK_HEADER="Block Luck" BLOCK_STYLE="clear:none;"}
+
+
+
+{section block $BLOCKSFOUND}
+ | {$BLOCKSFOUND[block].height} |
+{/section}
+
+
+
+
+ | Expected Shares |
+{section block $BLOCKSFOUND}
+ {(pow(2,32 - $GLOBAL.config.targetdiff) * $BLOCKSFOUND[block].difficulty)} |
+{/section}
+
+
+ | Actual Shares |
+{section block $BLOCKSFOUND}
+ {$BLOCKSFOUND[block].shares} |
+{/section}
+
+
+
+
+
+The graph above illustrates N shares to find a block vs. E Shares expected to find a block based on
+target and network difficulty and assuming a zero variance scenario.
+
+{include file="global/block_footer.tpl"}
+
+{include file="global/block_header.tpl" BLOCK_HEADER="Last $BLOCKLIMIT Blocks Found" BLOCK_STYLE="clear:none;"}
+
+
+
+
+ | Block |
+ Validity |
+ Finder |
+ Time |
+ Difficulty |
+ Expected Shares |
+ Actual Shares |
+
+
+
+{assign var=rank value=1}
+{section block $BLOCKSFOUND}
+
+ | {$BLOCKSFOUND[block].height} |
+
+ {if $BLOCKSFOUND[block].confirmations >= $GLOBAL.confirmations}
+ Confirmed
+ {else if $BLOCKSFOUND[block].confirmations == -1}
+ Orphan
+ {else}{$GLOBAL.confirmations - $BLOCKSFOUND[block].confirmations} left{/if} |
+ {$BLOCKSFOUND[block].finder|default:"unknown"} |
+ {$BLOCKSFOUND[block].time|date_format:"%d/%m %H:%M:%S"} |
+ {$BLOCKSFOUND[block].difficulty|number_format:"2"} |
+ {(pow(2,32 - $GLOBAL.config.targetdiff) * $BLOCKSFOUND[block].difficulty)|number_format} |
+ {$BLOCKSFOUND[block].shares|number_format} |
+
+{/section}
+
+
+
+
+ - Note: Round Earnings are not credited until {$GLOBAL.confirmations} confirms.
+
+{include file="global/block_footer.tpl"}
diff --git a/public/templates/mmcFE/statistics/blocks/blocks_found.tpl b/public/templates/mmcFE/statistics/blocks/small_table.tpl
similarity index 62%
rename from public/templates/mmcFE/statistics/blocks/blocks_found.tpl
rename to public/templates/mmcFE/statistics/blocks/small_table.tpl
index d66e1349..9152fcc7 100644
--- a/public/templates/mmcFE/statistics/blocks/blocks_found.tpl
+++ b/public/templates/mmcFE/statistics/blocks/small_table.tpl
@@ -1,14 +1,12 @@
{include file="global/block_header.tpl" BLOCK_HEADER="Last $BLOCKLIMIT Blocks Found" BLOCK_STYLE="clear:none;"}
-
+
| Block |
- Validity |
Finder |
Time |
- Difficulty |
- Shares |
+ Actual Shares |
@@ -16,15 +14,8 @@
{section block $BLOCKSFOUND}
| {$BLOCKSFOUND[block].height} |
-
- {if $BLOCKSFOUND[block].confirmations >= $GLOBAL.confirmations}
- Confirmed
- {else if $BLOCKSFOUND[block].confirmations == -1}
- Orphan
- {else}{$GLOBAL.confirmations - $BLOCKSFOUND[block].confirmations} left{/if} |
{$BLOCKSFOUND[block].finder|default:"unknown"} |
{$BLOCKSFOUND[block].time|date_format:"%d/%m %H:%M:%S"} |
- {$BLOCKSFOUND[block].difficulty|number_format:"2"} |
{$BLOCKSFOUND[block].shares|number_format} |
{/section}
diff --git a/public/templates/mmcFE/statistics/pool/authenticated.tpl b/public/templates/mmcFE/statistics/pool/authenticated.tpl
index bedd8d4b..5c67bbcd 100644
--- a/public/templates/mmcFE/statistics/pool/authenticated.tpl
+++ b/public/templates/mmcFE/statistics/pool/authenticated.tpl
@@ -44,6 +44,6 @@
{include file="global/block_footer.tpl"}
-{include file="statistics/blocks/blocks_found.tpl" ALIGN="right"}
+{include file="statistics/blocks/small_table.tpl" ALIGN="right" SHORT=true}
{include file="global/block_footer.tpl"}