Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
guru
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
guru
Commits
0c95032c
Commit
0c95032c
authored
7 years ago
by
Clint Mourlevat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing some errors
parent
0568bfc9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
Index.cshtml
Stratis.Guru/Views/BlockExplorer/Index.cshtml
+1
-1
Transaction.cshtml
Stratis.Guru/Views/BlockExplorer/Transaction.cshtml
+3
-3
No files found.
Stratis.Guru/Views/BlockExplorer/Index.cshtml
View file @
0c95032c
...
...
@@ -40,7 +40,7 @@
<tr>
<td><a asp-controller="BlockExplorer" asp-action="Block" asp-route-block="@block.blockIndex">@block.blockIndex</a></td>
<td>@((DateTime.Now - DateTimeOffset.FromUnixTimeSeconds((long)block.blockTime)).TotalMinutes.ToString("N0")) Minutes</td>
<td>@block.transactionCount</td>
<td
class="text-center"
>@block.transactionCount</td>
<td>@block.blockSize kB</td>
<td><a asp-controller="BlockExplorer" asp-action="BlockHash" asp-route-hash="@block.blockHash">@block.blockHash</a></td>
</tr>
...
...
This diff is collapsed.
Click to expand it.
Stratis.Guru/Views/BlockExplorer/Transaction.cshtml
View file @
0c95032c
...
...
@@ -35,20 +35,20 @@
<tr>
<td><strong>Transaction ID</strong></td>
<td>
<a asp-controller="BlockExplorer" asp-action="
Address" asp-route-address="@Model.address
">@Model.transactionId</a>
<a asp-controller="BlockExplorer" asp-action="
Transaction" asp-route-transactionId="@Model.transactionId
">@Model.transactionId</a>
<a href="#" class="copy-me"><i class="fa fa-copy"></i></a>
</td>
</tr>
<tr>
<td><strong>Block Hash</strong></td>
<td>
@Model.blockHash
<a asp-controller="BlockExplorer" asp-action="BlockHash" asp-route-hash="@Model.blockHash">@Model.blockHash</a>
</td>
</tr>
<tr>
<td><strong>Block Height</strong></td>
<td>
@Model.blockIndex
<a asp-controller="BlockExplorer" asp-action="Block" asp-route-block="@Model.blockIndex">@Model.blockIndex</a>
</td>
</tr>
<tr>
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment