Undo msg.value init

This commit is contained in:
Bhargava Shastry 2021-03-27 21:40:10 +01:00
parent 7a16359bae
commit 1485374115

View File

@ -106,8 +106,6 @@ evmc_message EvmoneUtility::initializeMessage(bytes const& _input)
msg.gas = std::numeric_limits<int64_t>::max();
msg.input_data = _input.data();
msg.input_size = _input.size();
// Value = 10^9 gwei = 1 ether
msg.value = {0x0, 0xca, 0x9a, 0x3b};
return msg;
}