From d87f686845dfb4b0a0b77c0a10dd2af56448615d Mon Sep 17 00:00:00 2001 From: Gavin Wood Date: Mon, 16 Oct 2023 19:27:40 +0100 Subject: [PATCH] Update text/0031-corejam.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bastian Köcher --- text/0031-corejam.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/text/0031-corejam.md b/text/0031-corejam.md index 0ff1630..745e11d 100644 --- a/text/0031-corejam.md +++ b/text/0031-corejam.md @@ -250,11 +250,11 @@ The amount of weight used in executing the `refine` function is noted in the `Wo ```rust /// Secure refrence to a Work Package. struct WorkPackageSpec { - /// The hash of the encoded `EncodedWorkPackage`. + /// The hash of the SCALE encoded `EncodedWorkPackage`. hash: WorkPackageHash, - /// The erasure root of the encoded `EncodedWorkPackage`. + /// The erasure root of the SCALE encoded `EncodedWorkPackage`. root: ErasureRoot, - /// The length in bytes of encoded `EncodedWorkPackage`. + /// The length in bytes of SCALE encoded `EncodedWorkPackage`. len: u32, } /// Execution report of a Work Package, mainly comprising the Results from the Refinement