The TX_GASPRICE property is used to add a filter to include or exclude functions that calls tx.gasprice.
tx.gasprice
from glider import * def query(): functions = ( Functions() .with_globals(GlobalFilters.TX_GASPRICE) .exec(1) ) return functions
Last updated 1 year ago