From 40aa96fc9cab94e13722220184883ee3f4f90d7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Thu, 11 Feb 2021 19:08:16 +0100 Subject: [PATCH] [FIXUP] Fix comment: RuntimeDispatch -> InternalDispatch --- libsolidity/analysis/FunctionCallGraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsolidity/analysis/FunctionCallGraph.cpp b/libsolidity/analysis/FunctionCallGraph.cpp index 9a6ce5154..1e964a264 100644 --- a/libsolidity/analysis/FunctionCallGraph.cpp +++ b/libsolidity/analysis/FunctionCallGraph.cpp @@ -61,7 +61,7 @@ FunctionCallGraphBuilder::FunctionCallGraphBuilder(ContractDefinition const& _co add(SpecialNode::Entry, &functionType->declaration()); } - // Add all InternalCreationDispatch calls to the RuntimeDispatch as well + // Add all InternalCreationDispatch calls to the InternalDispatch as well add(SpecialNode::InternalDispatch, SpecialNode::InternalCreationDispatch); if (_contract.fallbackFunction())