diff --git a/docs/interacting-with-geth/rpc/ns-debug.md b/docs/interacting-with-geth/rpc/ns-debug.md index a4af134a9f..037d298611 100644 --- a/docs/interacting-with-geth/rpc/ns-debug.md +++ b/docs/interacting-with-geth/rpc/ns-debug.md @@ -193,10 +193,10 @@ Returns a list of the last 'bad blocks' that the client has seen on the network Retrieves and returns the RLP encoded block by number. -| Client | Method invocation | -| :------ | ----------------------------------------------------- | -| Go | `debug.getRawBlock(blockNrOrHash) (string, error)` | -| Console | `debug.getBlockRlp(blockNrOrHash)` | +| Client | Method invocation | +| :------ | ------------------------------------------------------------ | +| Go | `debug.getRawBlock(blockNrOrHash) (string, error)` | +| Console | `debug.getBlockRlp(blockNrOrHash)` | | RPC | `{"method": "debug_getRawBlock", "params": [blockNrOrHash]}` | References: [RLP](https://ethereum.org/en/developers/docs/data-structures-and-encoding/rlp/) @@ -205,18 +205,18 @@ References: [RLP](https://ethereum.org/en/developers/docs/data-structures-and-en Returns an RLP-encoded header. -| Client | Method invocation | -| :------ | --------------------------------------------------- | -| Console | `debug.getRawHeader(blockNrOrHash)` | +| Client | Method invocation | +| :------ | ------------------------------------------------------------- | +| Console | `debug.getRawHeader(blockNrOrHash)` | | RPC | `{"method": "debug_getRawHeader", "params": [blockNrOrHash]}` | ### debug_getRawTransaction Returns the bytes of the transaction. -| Client | Method invocation | -| :------ | --------------------------------------------------- | -| Console | `debug.getRawTransaction(blockNrOrHash)` | +| Client | Method invocation | +| :------ | -------------------------------------------------------------------- | +| Console | `debug.getRawTransaction(blockNrOrHash)` | | RPC | `{"method": "debug_getRawTransaction", "params": [transactionHash]}` | ### debug_getModifiedAccountsByHash diff --git a/src/components/layouts/Layout.tsx b/src/components/layouts/Layout.tsx index 16a3534084..d1d92cbdaf 100644 --- a/src/components/layouts/Layout.tsx +++ b/src/components/layouts/Layout.tsx @@ -1,5 +1,5 @@ // Libraries -import { Container } from '@chakra-ui/react'; +import { Container, Flex, Stack } from '@chakra-ui/react'; import { FC } from 'react'; // Components @@ -13,11 +13,16 @@ interface Props { export const Layout: FC = ({ children }) => { return ( -
+ {/* adding min-height & top margin to keep footer at the bottom of the page */} + +
- {children} + {children} -