linting fix

pull/7/head
aniket-engg 5 years ago committed by Aniket
parent 8227279a80
commit faad28c175
  1. 2
      remix-lib/src/execution/txHelper.js

@ -42,7 +42,7 @@ module.exports = {
sortAbiFunction: function (contractabi) {
// Check if function is constant (introduced with Solidity 0.6.0)
const isConstant = ({stateMutability}) => stateMutability === 'view' || stateMutability === 'pure'
const isConstant = ({stateMutability}) => stateMutability === 'view' || stateMutability === 'pure'
// Sorts the list of ABI entries. Constant functions will appear first,
// followed by non-constant functions. Within those t wo groupings, functions
// will be sorted by their names.

Loading…
Cancel
Save