Remove not needed panic
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
This commit is contained in:
parent
286bba10eb
commit
6f2cd71e86
@ -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) {
|
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)
|
ret, err := vm.inv.Invoke(act, vmctx, method, params)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, 0, err
|
return nil, 0, err
|
||||||
|
Loading…
Reference in New Issue
Block a user