route price lookup fixes

This commit is contained in:
Tim Olson
2023-11-18 15:57:50 -04:00
parent d1e304a562
commit 7293c101f8
5 changed files with 20 additions and 11 deletions

View File

@@ -31,7 +31,7 @@ socket.on('p', async (chainId, pool, price) => {
return
const prices = {}
prices[pool] = price
console.log('pool price from message', pool, price)
console.log('pool price from message', pool, typeof price, price)
const poolPrices = s.poolPrices
poolPrices[pool] = price
s.poolPrices = poolPrices