提交 83f1d4f2 编写于 作者: J João Sousa

Fixed bug in prooftype parameter

上级 b3f2083f
无法预览此类型文件
......@@ -189,8 +189,8 @@ public class Configuration {
}
s = (String) configs.remove("system.totalordermulticast.prooftype");
if(s == null || !s.equalsIgnoreCase("macvector") || !s.equalsIgnoreCase("signatures")){
proofType = "macvector";
if(s == null || (s != null && !s.equalsIgnoreCase("macvector"))){
proofType = "signatures";
}else{
proofType = s;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册