Remove not needed panic

License: MIT
Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
This commit is contained in:
Jakub Sztandera 2019-07-11 17:40:01 +02:00
parent 286bba10eb
commit 6f2cd71e86

View File

@ -206,7 +206,6 @@ func (vm *VM) TransferFunds(from, to address.Address, amt BigInt) error {
}
func (vm *VM) Invoke(act *Actor, vmctx *VMContext, method uint64, params []byte) ([]byte, byte, error) {
panic("Implement me")
ret, err := vm.inv.Invoke(act, vmctx, method, params)
if err != nil {
return nil, 0, err