Skip to content

Commit db025c4

Browse files
committed
fix: add filter for init method in execute transactions
1 parent 9859b57 commit db025c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/Simulator/ExecuteTransactions.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const emit = defineEmits(['callMethod'])
2626
2727
const methodList = computed<ContractMethod[]>(() => {
2828
return Object.entries(props.abi?.methods || {})
29-
.filter(m => m[0] !== 'call_llm')
29+
.filter(m => !['call_llm', '__init__'].includes(m[0]))
3030
.map(m => ({
3131
name: m[0],
3232
inputs: m[1].inputs,

0 commit comments

Comments
 (0)