File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " aphelion-desktop-wallet" ,
3- "version" : " 3.4.2 " ,
3+ "version" : " 3.5.0 " ,
44 "author" : " Aphelion <info@aphelion.org>" ,
55 "description" : " Aphelion Desktop Wallet" ,
66 "license" : " LicenseRef-LICENSE" ,
Original file line number Diff line number Diff line change @@ -694,7 +694,11 @@ export default {
694694 alerts . success ( 'Deposit relayed, waiting for confirmation...' ) ;
695695 neo . monitorTransactionConfirmation ( res . tx , true )
696696 . then ( ( ) => {
697- neo . applyTxToAddressSystemAssetBalance ( currentWallet . address , res . tx , true ) ;
697+ if ( assetId !== assets . NEO && assetId !== assets . GAS ) {
698+ // Can't apply for NEO or GAS deposits, because it won't distinguish the new UTXO change from the
699+ // amounts sent.
700+ neo . applyTxToAddressSystemAssetBalance ( currentWallet . address , res . tx , true ) ;
701+ }
698702 resolve ( res . tx ) ;
699703 } )
700704 . catch ( ( e ) => {
You can’t perform that action at this time.
0 commit comments