output detail component deleted

This commit is contained in:
root 2019-09-10 15:44:49 +05:30
parent 9cf293fa0c
commit 7fb08325b2
7 changed files with 0 additions and 118 deletions

View File

@ -1,42 +0,0 @@
<div class="view_content py-4">
<div *ngIf="hasdata" class="container">
<h3>&nbsp; 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>

View File

@ -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();
});
});

View File

@ -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() {
}
}

View File

@ -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 { }

View File

@ -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 { }

View File

@ -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',