Undo msg.value init

This commit is contained in:
Bhargava Shastry
2021-06-14 13:27:17 +02:00
parent 7a16359bae
commit 1485374115
@@ -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;
}