@@ -208,7 +208,7 @@ abstract contract KernelTestBase is TestPlus, Test {
208208 );
209209
210210 bytes32 digest =
211- keccak256 (abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.1 " , address (kernel)), hash));
211+ keccak256 (abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.2 " , address (kernel)), hash));
212212
213213 return digest;
214214 }
@@ -1037,7 +1037,7 @@ abstract contract KernelTestBase is TestPlus, Test {
10371037 function testSignatureRoot (bytes32 hash ) external whenInitialized {
10381038 bytes32 wrappedHash = keccak256 (abi.encode (keccak256 ("Kernel(bytes32 hash) " ), hash));
10391039 bytes32 digest = keccak256 (
1040- abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.1 " , address (kernel)), wrappedHash)
1040+ abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.2 " , address (kernel)), wrappedHash)
10411041 );
10421042 bytes memory sig = _rootSignDigest (digest, true );
10431043 sig = abi.encodePacked (hex "00 " , sig);
@@ -1065,7 +1065,7 @@ abstract contract KernelTestBase is TestPlus, Test {
10651065
10661066 bytes32 wrappedHash = keccak256 (abi.encode (keccak256 ("Kernel(bytes32 hash) " ), hash));
10671067 bytes32 digest = keccak256 (
1068- abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.1 " , address (kernel)), wrappedHash)
1068+ abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.2 " , address (kernel)), wrappedHash)
10691069 );
10701070 bytes memory sig = _validatorSignDigest (digest, true );
10711071 sig = abi.encodePacked (hex "01 " , address (enabledValidator), sig);
@@ -1092,7 +1092,7 @@ abstract contract KernelTestBase is TestPlus, Test {
10921092 );
10931093 bytes32 wrappedHash = keccak256 (abi.encode (keccak256 ("Kernel(bytes32 hash) " ), hash));
10941094 bytes32 digest = keccak256 (
1095- abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.1 " , address (kernel)), wrappedHash)
1095+ abi.encodePacked ("\x19\x01 " , _buildDomainSeparator ("Kernel " , "0.3.2 " , address (kernel)), wrappedHash)
10961096 );
10971097 bytes memory sig = _permissionSignDigest (digest, true );
10981098 sig = abi.encodePacked (hex "02 " , PermissionId.unwrap (enabledPermission), hex "ff " , sig);
0 commit comments