Skip to content

Commit

Permalink
Revert release todo
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitayutanov committed Jan 9, 2024
1 parent 972da17 commit ca1f9a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/config/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ export const NetworkList: Networks = {
lightClient: WellKnownChain.polkadot,
defaultRpcEndpoint: 'Parity',
rpcEndpoints: {
// TODO: remove after runtime upgrade
Parity: 'wss://testnet.vara.network',
Parity: 'wss://rpc.vara.network',
},
},
namespace: 'fe1b4c55fd4d668101126434206571a7',
Expand Down
7 changes: 3 additions & 4 deletions src/contexts/Pools/PoolsConfig/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,9 @@ export const PoolsConfigProvider = ({
maxPools,
minCreateBond: new BigNumber(minCreateBond.toString()),
minJoinBond: new BigNumber(minJoinBond.toString()),
// TODO: remove after runtime upgrade
globalMaxCommission: globalMaxCommission.toHuman()
? Number(globalMaxCommission.toHuman().slice(0, -1))
: 0,
globalMaxCommission: Number(
globalMaxCommission.toHuman().slice(0, -1)
),
},
},
setPoolsConfig,
Expand Down

0 comments on commit ca1f9a9

Please sign in to comment.