@@ -1625,7 +1625,7 @@ impl<'inner, 'config, 'precompiles, S: StackState<'config>, P: PrecompileSet> Pr
16251625 self . executor . state . refund_external_cost ( ref_time, proof_size) ;
16261626 }
16271627
1628- /// Retreive the remaining gas.
1628+ /// Retrieve the remaining gas.
16291629 fn remaining_gas ( & self ) -> u64 {
16301630 self . executor . state . metadata ( ) . gasometer . gas ( )
16311631 }
@@ -1635,17 +1635,17 @@ impl<'inner, 'config, 'precompiles, S: StackState<'config>, P: PrecompileSet> Pr
16351635 Handler :: log ( self . executor , address, topics, data)
16361636 }
16371637
1638- /// Retreive the code address (what is the address of the precompile being called).
1638+ /// Retrieve the code address (what is the address of the precompile being called).
16391639 fn code_address ( & self ) -> H160 {
16401640 self . code_address
16411641 }
16421642
1643- /// Retreive the input data the precompile is called with.
1643+ /// Retrieve the input data the precompile is called with.
16441644 fn input ( & self ) -> & [ u8 ] {
16451645 self . input
16461646 }
16471647
1648- /// Retreive the context in which the precompile is executed.
1648+ /// Retrieve the context in which the precompile is executed.
16491649 fn context ( & self ) -> & Context {
16501650 self . context
16511651 }
@@ -1655,7 +1655,7 @@ impl<'inner, 'config, 'precompiles, S: StackState<'config>, P: PrecompileSet> Pr
16551655 self . is_static
16561656 }
16571657
1658- /// Retreive the gas limit of this call.
1658+ /// Retrieve the gas limit of this call.
16591659 fn gas_limit ( & self ) -> Option < u64 > {
16601660 self . gas_limit
16611661 }
0 commit comments