From e25728cb68c5b4e5497281fc78445c448975453c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Kripalani?= Date: Fri, 13 Jan 2023 19:59:09 +0000 Subject: [PATCH] remove leftover hack. --- chain/stmgr/call.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/chain/stmgr/call.go b/chain/stmgr/call.go index 8f8aebf63..61be26e56 100644 --- a/chain/stmgr/call.go +++ b/chain/stmgr/call.go @@ -226,16 +226,6 @@ func (sm *StateManager) callInternal(ctx context.Context, msg *types.Message, pr Data: make([]byte, 65), }, } - default: - // XXX: Hack to make sending from f099 (and others) "just work". - // REMOVE ME. - msgApply = &types.SignedMessage{ - Message: *msg, - Signature: crypto.Signature{ - Type: crypto.SigTypeSecp256k1, - Data: make([]byte, 65), - }, - } } ret, err = vmi.ApplyMessage(ctx, msgApply)