diff --git a/shyftBlockExplorerUI/src/components/table/internalTransactions/internalRow.js b/shyftBlockExplorerUI/src/components/table/internalTransactions/internalRow.js index c8ccf3a5f0..c5ea468852 100644 --- a/shyftBlockExplorerUI/src/components/table/internalTransactions/internalRow.js +++ b/shyftBlockExplorerUI/src/components/table/internalTransactions/internalRow.js @@ -53,17 +53,17 @@ class InternalTransactionsTable extends Component {
| Block Hash | -Action | -To | -From | -Gas | -Gas Used | -ID | -Input | -Output | -Time | -Value | +Block Hash | +Action | +To | +From | +Gas | +Gas Used | +ID | +Input | +Output | +Time | +Value | {props.Gas} | props.getBlocksMined(props.Coinbase)}>{props.Coinbase} | {props.ID} | -{props.Input} | -{props.Output} | ++ + | + | {props.Time} | {props.Value} | - + ) } diff --git a/shyftBlockExplorerUI/src/containers/App.js b/shyftBlockExplorerUI/src/containers/App.js index c825289f84..9503871339 100644 --- a/shyftBlockExplorerUI/src/containers/App.js +++ b/shyftBlockExplorerUI/src/containers/App.js @@ -21,7 +21,7 @@ import DetailTransactionTable from "../components/table/transactions/transaction import BlockTxs from "../components/table/transactions/blockTx"; - +///**INTERNAL TRANSACTIONS**/// import InternalTransactionRow from '../components/table/internalTransactions/internalRow'; @@ -91,7 +91,7 @@ class App extends Component { detailInternalHandler = async() => { console.log("in internal request"); - + try { const response = await axios.get(`http://localhost:8080/api/get_internal_transactions/`)
|---|