diff --git a/package.json b/package.json index a35e08969..f01642151 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dxswap-dapp", - "version": "1.0.0-beta.2", + "version": "1.0.0-beta.3", "description": "DXswap Decentralized Application", "devDependencies": { "@apollo/client": "^3.3.13", diff --git a/src/state/application/reducer.ts b/src/state/application/reducer.ts index dbb7f52dd..1b6c34ba1 100644 --- a/src/state/application/reducer.ts +++ b/src/state/application/reducer.ts @@ -27,6 +27,7 @@ const initialState: ApplicationState = { export default createReducer(initialState, builder => builder .addCase(updateBlockNumber, (state, action) => { + console.log('new block') const { chainId, blockNumber } = action.payload if (typeof state.blockNumber[chainId] !== 'number') { state.blockNumber[chainId] = blockNumber