fix: console view defaultState

This commit is contained in:
George Lima 2019-01-10 09:37:28 -03:00
parent bf9f13f0cc
commit 3b86f01f15
1 changed files with 10 additions and 5 deletions

View File

@ -7,7 +7,7 @@ import styled from 'styled-components';
import generateRandomString from '../utils/generate-random-string';
import { TextComponent } from '../components/text';
import ConsoleSymbol from '../assets/images/console_zcash.svg';
import ConsoleSymbol from '../assets/images/console_zcash.png';
const Wrapper = styled.div`
max-height: 100%;
@ -34,16 +34,21 @@ const initialLog = `
In order to ensure you are adequately protecting your privacy when using Zcash, please see <https://z.cash/support/security/>.
`;
const defaultState = `
\n
const defaultState = `
Thank you for running a Zcash node!
You're helping to strengthen the network and contributing to a social good :)
In order to ensure you are adequately protecting your privacy when using Zcash, please see <https://z.cash/support/security/>.
Block height | 0
Connections | 0
Network solution rate | 0 Sol/s
You are currently not mining.
To enable mining, add 'gen=1' to your zcash.conf and restart.
Since starting this node 0 minutes, 0 seconds ago:
- You have validated 0 transactions!
\n
------------------------------------------
`;
const breakpoints = [1, 4, 7, 10, 13];
@ -56,7 +61,7 @@ type State = {
export class ConsoleView extends Component<Props, State> {
state = {
log: initialLog + defaultState,
log: defaultState,
};
componentDidMount() {