优化NodeComponent类中invoke2Resp方法的参数

This commit is contained in:
everywhere.z
2022-08-02 16:47:39 +08:00
parent cfb22ac327
commit ffb4dca6a9

View File

@@ -325,7 +325,7 @@ public abstract class NodeComponent{
FlowExecutorHolder.loadInstance().invoke(chainId, param, this.getSlotIndex());
}
public LiteflowResponse invoke2Resp(String chainId, Object param, Integer slotIndex) {
public LiteflowResponse invoke2Resp(String chainId, Object param) {
return FlowExecutorHolder.loadInstance().invoke2Resp(chainId, param, this.getSlotIndex());
}
}