we are dividing the node index by 32, I understand we are progressing in 32-byte chunk, but in line 505 above, we set the i = 1, in which case, it should potentially be 32, otherwise we are checking the first node submission once again, and we have potentially already checked that the first node was malicious..
In https://github.com/atoma-network/atoma-contracts/blob/main/sui/packages/atoma/sources/settlement.move#L514
we are dividing the node index by
32
, I understand we are progressing in 32-byte chunk, but in line 505 above, we set thei = 1
, in which case, it should potentially be32
, otherwise we are checking the first node submission once again, and we have potentially already checked that the first node was malicious..