|
|
@ -25,6 +25,7 @@ export const AddressActionsNonBasiliskModeRender = function(address, type) { |
|
|
|
<i className="icon wb-copy margin-right-5"></i> { translate('INDEX.COPY') + ' pub key' } |
|
|
|
</li> |
|
|
|
{ !address.canspend && |
|
|
|
this.props.mode !== 'spv' && |
|
|
|
<li onClick={ () => this.dumpPrivKey(address, type !== 'public' ? true : null) }> |
|
|
|
<i className="icon fa-key margin-right-5"></i> { translate('INDEX.COPY') + ' priv key (WIF)' } |
|
|
|
</li> |
|
|
@ -47,6 +48,7 @@ export const AddressItemRender = function(address, type) { |
|
|
|
{ type === 'public' ? address.address : `${address.address.substring(0, 34)}...` } |
|
|
|
{ !address.canspend && |
|
|
|
type === 'public' && |
|
|
|
this.props.mode !== 'spv' && |
|
|
|
<i |
|
|
|
title="You don't own priv keys for this address" |
|
|
|
className="fa fa-ban margin-left-10"></i> |
|
|
@ -56,6 +58,7 @@ export const AddressItemRender = function(address, type) { |
|
|
|
<span>{ address.amount }</span> |
|
|
|
{ !address.canspend && |
|
|
|
type === 'public' && |
|
|
|
this.props.mode !== 'spv' && |
|
|
|
<span title="Available amount to spend: 0"> (0)</span> |
|
|
|
} |
|
|
|
</td> |
|
|
|