mirror of
https://github.com/mempool/mempool.git
synced 2025-02-23 22:46:54 +01:00
Restore the calculator
This commit is contained in:
parent
108d1762d6
commit
9844c3d275
1 changed files with 5 additions and 0 deletions
|
@ -7,6 +7,7 @@ import { SharedModule } from './shared/shared.module';
|
|||
import { StartComponent } from './components/start/start.component';
|
||||
import { AddressComponent } from './components/address/address.component';
|
||||
import { PushTransactionComponent } from './components/push-transaction/push-transaction.component';
|
||||
import { CalculatorComponent } from './components/calculator/calculator.component';
|
||||
import { BlocksList } from './components/blocks-list/blocks-list.component';
|
||||
import { RbfList } from './components/rbf-list/rbf-list.component';
|
||||
|
||||
|
@ -87,6 +88,10 @@ const routes: Routes = [
|
|||
loadChildren: () => import('./lightning/lightning.module').then(m => m.LightningModule),
|
||||
data: { preload: browserWindowEnv && browserWindowEnv.LIGHTNING === true, networks: ['bitcoin'] },
|
||||
},
|
||||
{
|
||||
path: 'tools/calculator',
|
||||
component: CalculatorComponent
|
||||
},
|
||||
],
|
||||
}
|
||||
];
|
||||
|
|
Loading…
Add table
Reference in a new issue