Skip to content

Commit 5409328

Browse files
zeevick10Aniket-Engg
authored andcommitted
Update txHelper.ts
1 parent 52c4470 commit 5409328

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/remix-lib/src/execution/txHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export function sortAbiFunction (contractabi) {
4747
// Check if function is constant (introduced with Solidity 0.6.0)
4848
const isConstant = ({ stateMutability }) => stateMutability === 'view' || stateMutability === 'pure'
4949
// Sorts the list of ABI entries. Constant functions will appear first,
50-
// followed by non-constant functions. Within those t wo groupings, functions
50+
// followed by non-constant functions. Within those two groupings, functions
5151
// will be sorted by their names.
5252
return contractabi.sort(function (a, b) {
5353
if (isConstant(a) && !isConstant(b)) {

0 commit comments

Comments
 (0)