You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is nearly identical to the latest version of the policy contract located at src/BlockBuilderPolicy contract, except in the latest has had the logic around the xfam and tdattributes bit masking removed. This was done because there was a bug in the bit masking logic, and we want to fix the bug and simplify the contract by removing the bit masking logic.
270
+
271
+
#### Deploy Command
272
+
273
+
Run the command below, then paste in the private key of the address you want to use to pay for gas and execute the deployment:
/// @dev See section 11.5.3 in TDX Module v1.5 Base Architecture Specification https://www.intel.com/content/www/us/en/content-details/733575/intel-tdx-module-v1-5-base-architecture-specification.html
53
-
/// @notice Enabled FPU (always enabled)
54
-
bytes8constant TD_XFAM_FPU =0x0000000000000001;
55
-
/// @notice Enabled SSE (always enabled)
56
-
bytes8constant TD_XFAM_SSE =0x0000000000000002;
57
-
58
-
/// @dev See section 3.4.1 in TDX Module ABI specification https://cdrdv2.intel.com/v1/dl/getContent/733579
59
-
/// @notice Allows disabling of EPT violation conversion to #VE on access of PENDING pages. Needed for Linux
0 commit comments