diff --git a/app/lib/common-libs/constants.ts b/app/lib/common-libs/constants.ts
index e2bd4cfb89ac4332c041af52e3ebf90d39f0d689..223c77795a627cd1db7962b504fc283d0676f260 100755
--- a/app/lib/common-libs/constants.ts
+++ b/app/lib/common-libs/constants.ts
@@ -106,7 +106,7 @@ export const CommonConstants = {
   },
 
   BLOCK_GENERATED_VERSION: 10,
-  BLOCK_NEW_GENERATED_VERSION: 10, // Put it to 11 when ready
+  BLOCK_NEW_GENERATED_VERSION: 11, // Put it to 11 when ready
   LAST_VERSION_FOR_TX: 10,
   TRANSACTION_VERSION: 10,
   DOCUMENTS_VERSION: 10,
diff --git a/app/lib/rules/local_rules.ts b/app/lib/rules/local_rules.ts
index 15569c4193d39d37ec0ef491353ea7f60d560cc8..9080bbe0e57881b2c82be611e1e64d817d77c7bc 100644
--- a/app/lib/rules/local_rules.ts
+++ b/app/lib/rules/local_rules.ts
@@ -539,7 +539,7 @@ export const LOCAL_RULES_HELPERS = {
         const nbNoncesWithNextVersionCode = lastNonceOfEachIssuer.filter(nonce => nonce.substr(-11, 3) === '999').length
 
         // More than 70% of the computing network converted? Let's go to next version.
-        if (Math.floor(nbNoncesWithNextVersionCode / uniqIssuersInFrame.length) > 0.7) {
+        if (Math.floor(nbNoncesWithNextVersionCode / uniqIssuersInFrame.length) > 0.6) {
           return constants.BLOCK_NEW_GENERATED_VERSION
         }