Skip to content

Commit

Permalink
Fix showing staker address (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
hwrdtm committed Jan 10, 2024
1 parent bc3aac5 commit b413d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NodeView/Pages/Explorer/StakingHistory.razor
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
<RadzenDataGridColumn TItem="Services.Metrics.Models.Validator" Title="Next Nodes" Width="100%" >
<Template Context="data">
Node #@data.NodeName : @data.NodeSocketAddress <br/>
<a href="@("https://lit-protocol.calderaexplorer.xyz/address/" +data.NodeAddress)" style="text-decoration:none" target="_blank" >@data.NodeAddress</a>
<a href="@("https://lit-protocol.calderaexplorer.xyz/address/" +data.StakerAddress)" style="text-decoration:none" target="_blank" >@data.StakerAddress</a>
</Template>
</RadzenDataGridColumn>
</Columns>
Expand Down

0 comments on commit b413d61

Please sign in to comment.