diff --git a/server/controllers/BlockchainBlock.ts b/server/controllers/BlockchainBlock.ts index b042e25..3f4c0ee 100644 --- a/server/controllers/BlockchainBlock.ts +++ b/server/controllers/BlockchainBlock.ts @@ -817,7 +817,7 @@ export class BlockchainBlockController { const BlockchainBlockKernalFetchQuery = await getConnection(Global.network).getRepository( BlockchainKernel, ).find({ - select: ['Features', 'Fee', 'LockHeight'], + select: ['Features', 'Fee', 'LockHeight' , 'Excess'], where: { BlockId: BlockchainBlockFetchQuery.Hash }, }); diff --git a/server/i18n/de.json b/server/i18n/de.json index 9fde0f2..3105e45 100644 --- a/server/i18n/de.json +++ b/server/i18n/de.json @@ -17,6 +17,7 @@ "TIMETAKEN": "Verbrachte Zeit (sek)", "COUNTDOWN": "Mainnet-Countdown", "EXPLORE_IT": "MEHR", + "EXCESS":"Überschuss", "blocks-by-algorithm" : "Blöcke nach Algorithmus", "VIEWALL": "Alle Diagramme anzeigen", "BLOCKCHAIN_HEIGHT": "Blockchain Höhe", diff --git a/server/i18n/en.json b/server/i18n/en.json index 4b90c32..6bc3773 100644 --- a/server/i18n/en.json +++ b/server/i18n/en.json @@ -16,6 +16,7 @@ "HEADER_TEXT": "You are on Beta", "COUNTDOWN": "Mainnet Countdown", "TIMETAKEN": "Time Taken (sec)", + "EXCESS":"Excess", "EXPLORE_IT": "Explore", "blocks-by-algorithm" : "Blocks by Algorithm", "VIEWALL": "View All Charts", diff --git a/src/app/view/block-view/block-detail/block-detail.component.html b/src/app/view/block-view/block-detail/block-detail.component.html index 306461f..d9bc79d 100644 --- a/src/app/view/block-view/block-detail/block-detail.component.html +++ b/src/app/view/block-view/block-detail/block-detail.component.html @@ -232,10 +232,13 @@