2 Commits ec7dd5e88c ... f41d714952

Autor SHA1 Mensaje Fecha
  Rony f41d714952 Merge branch 'master' of https://git.yishihui.com/contracts/denet-node-server hace 2 años
  Rony 75ca4ddf5a add uppercase chain hace 2 años
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      model/utils.js

+ 1 - 1
model/utils.js

@@ -165,7 +165,7 @@ function getRedisKeyFromChain(chain) {
         case 'okc':
             return '_OKC'
         default:
-            return null
+            return '_' + chain.toUpperCase()
     }
 }