Changed the postincrement operator to a preincrement operator in the for loops in src/consensus/merkle.cpp and src/consensus/tx_verify.cpp.
The compiler might actually optimize the for loop process in either case, but like the Developer Notes say: ++i is preferred over i++.