Trying to fix integer 32 issue

This commit is contained in:
Michele Marcucci 2024-04-03 10:08:14 +02:00
parent 33429cec66
commit ad5eff9150

View File

@ -202,10 +202,10 @@ module.exports.typeDefs = `
hashrate6hr: String hashrate6hr: String
hashrate1d: String hashrate1d: String
hashrate7d: String hashrate7d: String
diff: Int diff: Float
accepted: Int accepted: Int
rejected: Int rejected: Int
bestshare: Int bestshare: Float
SPS1m: Float SPS1m: Float
SPS5m: Float SPS5m: Float
SPS15m: Float SPS15m: Float
@ -222,7 +222,7 @@ module.exports.typeDefs = `
workers: Int workers: Int
shares: Int shares: Int
bestshare: Float bestshare: Float
bestever: Int bestever: Float
authorised: Int authorised: Int
worker: [MinerStatsCkpoolWorker] worker: [MinerStatsCkpoolWorker]
} }
@ -237,7 +237,7 @@ module.exports.typeDefs = `
lastshare: Int, lastshare: Int,
shares: Int, shares: Int,
bestshare: Float, bestshare: Float,
bestever: Int bestever: Float
} }
`; `;