From 744136830d18ee9dd013a45b97eee0fb7799c5d7 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Mon, 22 Dec 2014 03:09:11 +0100 Subject: [PATCH] const-> constant --- test/SolidityABIJSON.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/SolidityABIJSON.cpp b/test/SolidityABIJSON.cpp index 4c7c23815..714aa0f30 100644 --- a/test/SolidityABIJSON.cpp +++ b/test/SolidityABIJSON.cpp @@ -232,7 +232,7 @@ BOOST_AUTO_TEST_CASE(const_function) { char const* sourceCode = "contract test {\n" " function foo(uint a, uint b) returns(uint d) { return a + b; }\n" - " function boo(uint32 a) const returns(uint b) { return a * 4; }\n" + " function boo(uint32 a) constant returns(uint b) { return a * 4; }\n" "}\n"; char const* interface = R"([