Fix comment for fn gas() in wasm/runtime (#8122)

* Update runtime.rs

* Update runtime.rs
This commit is contained in:
Alexey 2018-03-15 15:34:11 +03:00 committed by Nikolay Volf
parent 21cb08586b
commit acd7192b17

View File

@ -306,7 +306,7 @@ impl<'a> Runtime<'a> {
Ok(self.gas_limit - self.gas_counter)
}
/// Charges gas for the current block of execution. Returns an error in case of running out of gas.
/// General gas charging extern.
fn gas(&mut self, args: RuntimeArgs) -> Result<()> {
let amount: u32 = args.nth_checked(0)?;
if self.charge_gas(amount as u64) {