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
52885136
Commit
52885136
authored
6 years ago
by
Clint Mourlevat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing outputs empty
parent
6773e8d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
13 deletions
+16
-13
Transaction.cshtml
Stratis.Guru/Views/BlockExplorer/Transaction.cshtml
+16
-13
No files found.
Stratis.Guru/Views/BlockExplorer/Transaction.cshtml
View file @
52885136
...
...
@@ -62,19 +62,22 @@
<td><strong>Block Date/Time</strong></td>
<td>@Model.timestamp.ToString("F")</td>
</tr>
<tr>
<td><strong>Total Output</strong></td>
<td>
@{
double totalOutpus = 0;
}
@foreach (var t in Model.outputs)
{
totalOutpus += (double)t.balance;
}
@totalOutpus.ToString("N8") STRAT
</td>
</tr>
@if (Model.outputs != null)
{
<tr>
<td><strong>Total Output</strong></td>
<td>
@{
double totalOutpus = 0;
}
@foreach (var t in Model.outputs)
{
totalOutpus += (double) t.balance;
}
@totalOutpus.ToString("N8") STRAT
</td>
</tr>
}
</tbody>
</table>
</div>
...
...
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