Possible Bug in "submission not accepted" error message.
To recreate:
submit_only_best: false
target_deadline: 2000000
In this case it looks like the real reason the deadline wasn't accepted was because a new block was starting 1 sec later, so it was actually rejected for wrong round and not "message: {"result":"Deadline exceeds maximum allowed deadline"}"
Since when does 266,630 exceed 2,000,000?
Now I am doing the max target deadline at 2,000,000 and send all to catch short blocks but not send super high deadlines that would happen if it was send all from the very beginning using the target_deadline=1,000,000,000. If it was target_deadline=1,000,000,000 and send all and a super short block, it would cause my EC to usually cut in half because the miner didn't get a chance to read all the plots and the chain/pool thinks you are way smaller.
How did I pick target_deadline: 2000000? I used the pool API and my address to get my deadlines, and only a few out of about 119 were larger like:
1812641
1193214
1520451
1635704
1102099
1480708
1238251
1439041
1563917
1032434
So I figured 2,000,000 would catch everything.
Possible Bug in "submission not accepted" error message.
To recreate: submit_only_best: false target_deadline: 2000000
In this case it looks like the real reason the deadline wasn't accepted was because a new block was starting 1 sec later, so it was actually rejected for wrong round and not "message: {"result":"Deadline exceeds maximum allowed deadline"}"
Since when does 266,630 exceed 2,000,000?
Now I am doing the max target deadline at 2,000,000 and send all to catch short blocks but not send super high deadlines that would happen if it was send all from the very beginning using the target_deadline=1,000,000,000. If it was target_deadline=1,000,000,000 and send all and a super short block, it would cause my EC to usually cut in half because the miner didn't get a chance to read all the plots and the chain/pool thinks you are way smaller.
How did I pick target_deadline: 2000000? I used the pool API and my address to get my deadlines, and only a few out of about 119 were larger like: 1812641 1193214 1520451 1635704 1102099 1480708 1238251 1439041 1563917 1032434 So I figured 2,000,000 would catch everything.