aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--InterfaceHandler.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/InterfaceHandler.cpp b/InterfaceHandler.cpp
index e9c74fb8..7d0598ed 100644
--- a/InterfaceHandler.cpp
+++ b/InterfaceHandler.cpp
@@ -81,7 +81,6 @@ std::unique_ptr<std::string> InterfaceHandler::getABIInterface(ContractDefinitio
event["inputs"] = params;
abi.append(event);
}
-
return std::unique_ptr<std::string>(new std::string(m_writer.write(abi)));
}
@@ -118,7 +117,6 @@ unique_ptr<string> InterfaceHandler::getABISolidityInterface(ContractDefinition
ret += "event " + it->getName() + params + ";";
}
-
return unique_ptr<string>(new string(ret + "}"));
}