We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52c4470 commit 5409328Copy full SHA for 5409328
libs/remix-lib/src/execution/txHelper.ts
@@ -47,7 +47,7 @@ export function sortAbiFunction (contractabi) {
47
// Check if function is constant (introduced with Solidity 0.6.0)
48
const isConstant = ({ stateMutability }) => stateMutability === 'view' || stateMutability === 'pure'
49
// Sorts the list of ABI entries. Constant functions will appear first,
50
- // followed by non-constant functions. Within those t wo groupings, functions
+ // followed by non-constant functions. Within those two groupings, functions
51
// will be sorted by their names.
52
return contractabi.sort(function (a, b) {
53
if (isConstant(a) && !isConstant(b)) {
0 commit comments