Skip to content

Commit

Permalink
unused
Browse files Browse the repository at this point in the history
  • Loading branch information
darioush committed Jan 9, 2024
1 parent 4e42d2c commit 9d0f197
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions core/vm/instructions_ext.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,20 +234,3 @@ func (evm *EVM) NativeAssetCall(caller common.Address, input []byte, suppliedGas
}
return ret, remainingGas, err
}

var (
OpBalanceMultiCoin = &operation{
execute: opBalanceMultiCoin,
constantGas: params.BalanceGasFrontier,
minStack: minStack(2, 1),
maxStack: maxStack(2, 1),
}
OpCallExpert = &operation{
execute: opCallExpert,
constantGas: params.CallGasFrontier,
dynamicGas: gasCall,
minStack: minStack(9, 1),
maxStack: maxStack(9, 1),
memorySize: memoryCallExpert,
}
)

0 comments on commit 9d0f197

Please sign in to comment.