Skip to content

Commit

Permalink
Fix olekon#6
Browse files Browse the repository at this point in the history
  • Loading branch information
fffy2366 committed Mar 4, 2022
1 parent 54c7c1b commit 73dd094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/contract/ContractOperationsView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class ContractOperationsView extends React.Component {
render() {
//select only non-constant methods
let methods = this.props.contract._jsonInterface.filter(
item => item.constant === false
item => item.stateMutability === "nonpayable"
);

return (
Expand Down

0 comments on commit 73dd094

Please sign in to comment.