From bba1b069571f666d4552982e760346d8828646a3 Mon Sep 17 00:00:00 2001 From: Alan Donoso Naumczuk Date: Thu, 19 Dec 2024 14:07:10 -0300 Subject: [PATCH] fix: Wrong Version Byte in the comment --- contracts/core/base/BaseSource.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/core/base/BaseSource.sol b/contracts/core/base/BaseSource.sol index f61aac2f..8b6c16e0 100644 --- a/contracts/core/base/BaseSource.sol +++ b/contracts/core/base/BaseSource.sol @@ -17,7 +17,7 @@ abstract contract BaseSource is ISource { _validateSource(sourceStamp); } - // Signature Standard: EIP-191 - Version Byte: 0x45 + // Signature Standard: EIP-191 - Version Byte: 0x00 function _validateSource( SourceStamp calldata sourceStamp ) internal virtual {