Browse Source
feat(wallet): show node public address if set
Show the node public address if known to make it easier to share node
details with other users. Add the data in both the Node address text
field as well as the node address QR code.
renovate/lint-staged-8.x
Tom Kirkpatrick
6 years ago
No known key found for this signature in database
GPG Key ID: 72203A8EC5967EA8
2 changed files with
7 additions and
6 deletions
app/components/Wallet/ReceiveModal.scss
app/routes/app/containers/AppContainer.js
@ -35,8 +35,8 @@
color : $white ;
. left {
width : 25 % ;
padding : 30 px 4 0px ;
width : 30 % ;
padding : 30 px 3 0px ;
. header {
h2 {
@ -78,14 +78,14 @@
}
. right {
width : 75 % ;
width : 70 % ;
min-height : 220 px ;
border-left : 1 px solid $spaceborder ;
padding : 30 px 4 0px ;
padding : 30 px 3 0px ;
. pubkey ,
. address {
padding : 25 px ;
padding : 25 px 0 ;
h4 {
font-size : 12 px ;
@ -1,5 +1,6 @@
import { withRouter } from 'react-router'
import { connect } from 'react-redux'
import get from 'lodash.get'
import { btc } from 'lib/utils'
@ -397,7 +398,7 @@ const mergeProps = (stateProps, dispatchProps, ownProps) => {
const receiveModalProps = {
isOpen : stateProps . address . walletModal ,
network : stateProps . info . network ,
pubkey : stateProps . info . data . identity_pubkey ,
pubkey : get ( stateProps . info , 'data.uris[0]' ) || get ( stateProps . info , 'data.identity_pubkey' ) ,
address : stateProps . address . address ,
alias : stateProps . info . data . alias ,
closeReceiveModal : dispatchProps . closeWalletModal