output detail component deleted
This commit is contained in:
parent
9cf293fa0c
commit
7fb08325b2
@ -1,42 +0,0 @@
|
||||
<div class="view_content py-4">
|
||||
<div *ngIf="hasdata" class="container">
|
||||
<h3> Output Commit <span style="font-size:15px">08cbff0ef3aabd991dc817c388459ad1935fc88ce293e11544bbd24d20830b8983</span></h3>
|
||||
|
||||
<h5>Created at block <a href="/block/340776"> 340776</a>
|
||||
<span style="font-size:15px">(Confirmed count: 4)</span>
|
||||
</h5>
|
||||
|
||||
<table class="table table-horizontal-bordered table-hover">
|
||||
<tbody><tr>
|
||||
<td>Created At </td>
|
||||
<td>{{ hashdata.BlockchainBlockFetchQuery.BlockReward }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Output Type</td>
|
||||
<td>{{ hashdata.BlockchainBlockFetchQuery.BlockReward }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Proof</td>
|
||||
<td>{{ hashdata.BlockchainBlockFetchQuery.BlockReward }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Proof hash</td>
|
||||
<td>{{ hashdata.BlockchainBlockFetchQuery.BlockReward }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Merkle Proof</td>
|
||||
<td>{{ hashdata.BlockchainBlockFetchQuery.BlockReward }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>MMR Index</td>
|
||||
<td>{{ hashdata.BlockchainBlockFetchQuery.BlockReward }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="alert alert-success" role="alert">
|
||||
The output commit was not spent.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
@ -1,25 +0,0 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { OutputDetailComponent } from './output-detail.component';
|
||||
|
||||
describe('OutputDetailComponent', () => {
|
||||
let component: OutputDetailComponent;
|
||||
let fixture: ComponentFixture<OutputDetailComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ OutputDetailComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(OutputDetailComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
@ -1,15 +0,0 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-output-detail',
|
||||
templateUrl: './output-detail.component.html',
|
||||
styleUrls: ['./output-detail.component.css']
|
||||
})
|
||||
export class OutputDetailComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { Routes, RouterModule } from '@angular/router';
|
||||
import { OutputDetailComponent } from './output-detail/output-detail.component';
|
||||
|
||||
const routes: Routes = [ {
|
||||
path: '',
|
||||
component: OutputDetailComponent,
|
||||
},
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class OutputViewRoutingModule { }
|
@ -1,14 +0,0 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
import { OutputViewRoutingModule } from './output-view-routing.module';
|
||||
import { OutputDetailComponent } from './output-detail/output-detail.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [OutputDetailComponent],
|
||||
imports: [
|
||||
CommonModule,
|
||||
OutputViewRoutingModule
|
||||
]
|
||||
})
|
||||
export class OutputViewModule { }
|
@ -28,13 +28,6 @@ const siteRoutes: Routes = [
|
||||
title: 'Epic Explorer - Block',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'outputdetail/:hash',
|
||||
loadChildren: './output-view/output-view.module#OutputViewModule',
|
||||
data: {
|
||||
title: 'Epic Explorer - Block',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'chart',
|
||||
loadChildren: './graph-view/graph-view.module#GraphViewModule',
|
||||
|
Loading…
Reference in New Issue
Block a user