[00:42:25] @Andrea7 - when testing had been completed. Best way to see it released faster is help out with the testing :) [08:59:30] imdoing it, for now is all ok, i also translate in italian totally, and open some issue (already closed-fixed) [09:00:41] thanks to our super fast Dev's 😉 [14:31:38] @aguycalled i checked the 4.3.0 version with the ita leanguage updated, nice but why the voice on the top remain the same? [14:31:42] https://cdn.discordapp.com/attachments/416000318149754881/473497924001726474/unknown.png [14:31:58] those are images, can't be translated with the current design [14:32:07] ok [14:32:31] thanks [21:01:20] @paul i just updated cfund-db branch [21:08:14] Nice I will rebuld [21:08:38] Can you also kick off your gitian [21:09:02] yes, already did [21:22:26] i also updated the tx inject doc [21:27:55] specifying how to correctly embed the proposal/preq hash for votes [21:28:01] The Hash has to be byte reversed. (Reminder: 1 byte is two hex chars - ffaacc reversed would be ccaaff) Quick js script to reverse bytes: var hash = "ffaacc"; var revHash = ""; if (hash.length % 2 == 0) { for (var i = hash.length - 1; i >= 0; i-=2) { revHash += hash[i-1] + hash[i]; } } console.log(revHash); // will print “ccaaff”