From aea1b0e293717f3ad7e79f0401d76997dcfbe318 Mon Sep 17 00:00:00 2001 From: Dirk McCormick Date: Tue, 4 Aug 2020 18:08:17 -0400 Subject: [PATCH] fix: lint fixes --- chain/vm/runtime.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chain/vm/runtime.go b/chain/vm/runtime.go index 883fc3941..5ab0dd3b7 100644 --- a/chain/vm/runtime.go +++ b/chain/vm/runtime.go @@ -294,7 +294,8 @@ func (rt *Runtime) CreateActor(codeID cid.Cid, address address.Address) { _ = rt.chargeGasSafe(gasOnActorExec) } -// Deletes the executing actor from the state tree, transferring any balance to beneficiary. +// DeleteActor deletes the executing actor from the state tree, transferring +// any balance to beneficiary. // Aborts if the beneficiary does not exist. // May only be called by the actor itself. func (rt *Runtime) DeleteActor(beneficiary address.Address) {