Merge pull request #10004 from filecoin-project/raulk/remove-hack

remove leftover hack.
This commit is contained in:
Jiaying Wang 2023-01-13 21:08:24 -05:00 committed by GitHub
commit 0731fe2637
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)