Merge pull request #3178 from poanetwork/vb-fix-fetching-tokens

Fix permanent fetching tokens and unavailable navbar menu when read/write proxy tab is active
pull/3180/head
Victor Baranov 4 years ago committed by GitHub
commit 9a1212e7bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      CHANGELOG.md
  2. 1
      apps/block_scout_web/assets/js/lib/smart_contract/functions.js
  3. 3
      apps/block_scout_web/lib/block_scout_web/templates/layout/app.html.eex

@ -3,6 +3,8 @@
### Features
### Fixes
-[#3178](https://github.com/poanetwork/blockscout/pull/3178) - Fix permanent fetching tokens... when read/write proxy tab is active
-[#3178](https://github.com/poanetwork/blockscout/pull/3178) - Fix unavailable navbar menu when read/write proxy tab is active
### Chore

@ -2,6 +2,7 @@ import $ from 'jquery'
import ethNetProps from 'eth-net-props'
import { walletEnabled, getCurrentAccount } from './write.js'
import { openErrorModal, openWarningModal, openSuccessModal, openModalWithMessage } from '../modals.js'
import '../../pages/address'
const WEI_MULTIPLIER = 10 ** 18

@ -86,6 +86,9 @@
@view_module != Elixir.BlockScoutWeb.AddressContractView &&
@view_module != Elixir.BlockScoutWeb.AddressContractVerificationView &&
@view_module != Elixir.BlockScoutWeb.AddressReadContractView &&
@view_module != Elixir.BlockScoutWeb.AddressReadProxyView &&
@view_module != Elixir.BlockScoutWeb.AddressWriteContractView &&
@view_module != Elixir.BlockScoutWeb.AddressWriteProxyView &&
@view_module != Elixir.BlockScoutWeb.Tokens.TransferView &&
@view_module != Elixir.BlockScoutWeb.Tokens.ReadContractView &&
@view_module != Elixir.BlockScoutWeb.Tokens.HolderView &&

Loading…
Cancel
Save