You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const state = {
blockMetaInfo: { block_id: {} },
blockHeight: null, // we remember the height so we can requery the block, if querying failed
subscription: false,
syncing: true,
blockMetas: {},
subscribedRPC: null
}
after:
const state = {
blockMetaInfo: { block_id: {} },
blockHeight: null, // we remember the height so we can requery the block, if querying failed
subscription: false,
syncing: true,
blockMetas: {},
subscribedRPC: null,
loading: false
}
this should then be reflected in the components that use these vuex modules.
The text was updated successfully, but these errors were encountered:
before:
after:
this should then be reflected in the components that use these vuex modules.
The text was updated successfully, but these errors were encountered: