[beta] Backporting (#6676)

* Fix wallet view (#6597)

* Add safe fail for empty logs

* Filter transactions

* Add more logging

* Fix Wallet Creation and wallet tx list

* Remove logs

* Prevent selecting twice same wallet owner

* Fix tests

* Remove unused props

* Remove unused props

* Disallow pasting recovery phrases on first run (#6602)

* Fix disallowing paste of recovery phrase on first run, ref #6581

* Allow the leader of CATS pasting recovery phrases.

* Updated systemd files for linux (#6592)

Previous version put $BASE directory in root directory.
This version clearly explains how to run as root or as specific user.

Additional configuration:

* send SIGHUP for clean exit,

* restart on fail.

Tested on Ubuntu 16.04.3 LTS with 4.10.0-33-generic x86_64 kernel

* Don't expose port 80 for parity anymore (#6633)
This commit is contained in:
Arkadiy Paronyan
2017-10-09 13:20:28 +02:00
committed by GitHub
parent 2d4f4bdd61
commit 949d2b7fd0
23 changed files with 256 additions and 89 deletions

View File

@@ -45,7 +45,6 @@ class Contract extends Component {
setVisibleAccounts: PropTypes.func.isRequired,
accounts: PropTypes.object,
accountsInfo: PropTypes.object,
contracts: PropTypes.object,
netVersion: PropTypes.string.isRequired,
params: PropTypes.object
@@ -128,7 +127,7 @@ class Contract extends Component {
}
render () {
const { accountsInfo, contracts, netVersion, params } = this.props;
const { contracts, netVersion, params } = this.props;
const { allEvents, contract, queryValues, loadingEvents } = this.state;
const account = contracts[params.address];
@@ -150,7 +149,6 @@ class Contract extends Component {
{ this.renderBlockNumber(account.meta) }
</Header>
<Queries
accountsInfo={ accountsInfo }
contract={ contract }
values={ queryValues }
/>
@@ -530,12 +528,11 @@ class Contract extends Component {
}
function mapStateToProps (state) {
const { accounts, accountsInfo, contracts } = state.personal;
const { accounts, contracts } = state.personal;
const { netVersion } = state.nodeStatus;
return {
accounts,
accountsInfo,
contracts,
netVersion
};