We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uint256
Socket
uint32
chainSlug()
Describe the bug The example uses uint256 while Socket uses uint32 for chainSlug(). The main ISocket.sol also misses the definition for chainSlug().
ISocket.sol
To Reproduce Check out the following code: socketDL-examples ISocket.sol#L79:
function chainSlug() external view returns (uint256 chainSlug);
socket-DL SocketBase.sol#L19:
uint32 public immutable chainSlug;
socket-DL ISocket.sol no definition for chainSlug()
Expected behavior
The text was updated successfully, but these errors were encountered:
Agree, need to upgrade examples to match the latest socket interfaces.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
The example uses
uint256
whileSocket
usesuint32
forchainSlug()
.The main
ISocket.sol
also misses the definition forchainSlug()
.To Reproduce
Check out the following code:
socketDL-examples ISocket.sol#L79:
socket-DL SocketBase.sol#L19:
socket-DL ISocket.sol
no definition for
chainSlug()
Expected behavior
uint32
)chainSlug()
should be present to socket-DL ISocket.solAdditional context
The text was updated successfully, but these errors were encountered: