Open Awote opened 4 days ago
Seems like the power target isn't getting set correctly in the config, can you send the result of await miner.get_config()
?
Yes
MinerConfig(pools=PoolConfig(groups=[PoolGroup(pools=[Pool(url='stratum+tcp://btc.foundryusapool.com:3333', user='soldierlakeimmersion.64cfd9473419', password=''), Pool(url='stratum+tcp://btc.foundryusapool.com:25', user='soldierlakeimmersion.64cfd9473419', password=''), Pool(url='stratum+tcp://btc.foundryusapool.com:443', user='soldierlakeimmersion.64cfd9473419', password='')], quota=1, name='test')]), fan_mode=FanModeNormal(mode='normal', minimum_fans=1, minimum_speed=0), temperature=TemperatureConfig(target=None, hot=None, danger=None), mining_mode=MiningModePowerTune(mode='power_tuning', power=None, algo=StandardTuneAlgo(mode='standard'), scaling=ScalingConfig(step=None, minimum=None, shutdown=None)))
Yeah, failing to find the power mode data. Whats the result of await miner.web.get_miner_configuration()
?
"poolGroups": [
{
"uid": "0",
"name": "test"
"quota": {
"value": 1
},
"pools": [
{
"uid": "1",
"url": "stratum+tcp://btc.foundryusapool.com:3333",
"user": "soldierlakeimmersion.64cfd9473419",
"password": "",
"enabled": true
},
{
"uid": "2",
"url": "stratum+tcp://btc.foundryusapool.com:25",
"user": "soldierlakeimmersion.64cfd9473419",
"password": "",
"enabled": true
},
{
"uid": "3",
"url": "stratum+tcp://btc.foundryusapool.com:443",
"user": "soldierlakeimmersion.64cfd9473419",
"password": "",
"enabled": true
}
]
}
],
"tuner": {
"enabled": true,
"tunerMode": 1
},
"dps": {
"enabled": true
}
}
Have you set a power limit on this miner, or its on default?
It seems like the betterproto files I have compiled don't exactly match up with the result from that version, are you able to update that miner to latest and try again? Seems like latest should be 24.09
.
i see that i can't change pool data without other configuration data, yes?
Correct. pyasic doesn't support changing independent parts of the config, since most miner types require the entire config to be sent all at once.
If for whatever reason you can't upgrade it, just grab the data.wattage_limit
and set the power limit in the config to that.
Hi, i tried to change password on miner's pool like this:
And i get this error
MB i do smth wrong?