diff options
author | chriseth <c@ethdev.com> | 2016-11-24 02:04:50 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-12-01 23:03:59 +0800 |
commit | 659b635b2d8274f870ebe487a73b431a2398b741 (patch) | |
tree | c88943e099c9992d514cba2d857a16cbebf6adba /solc/CommandLineInterface.cpp | |
parent | e666f8cda70ad5e03bc00f4509fc51571fff90a7 (diff) | |
download | dexon-solidity-659b635b2d8274f870ebe487a73b431a2398b741.tar.gz dexon-solidity-659b635b2d8274f870ebe487a73b431a2398b741.tar.zst dexon-solidity-659b635b2d8274f870ebe487a73b431a2398b741.zip |
Make sure some keys are present.
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r-- | solc/CommandLineInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index fdfcabb4..419a1de0 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -212,7 +212,7 @@ void CommandLineInterface::handleOnChainMetadata(string const& _contract) string data = m_compiler->onChainMetadata(_contract); if (m_args.count("output-dir")) - createFile(_contract + ".meta", data); + createFile(_contract + "_meta.json", data); else cout << "Metadata: " << endl << data << endl; } |