Find The Bug in this Smart Contract [series] 2024
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; /* * @author not-so-secure-dev * @title PasswordStore * @notice This contract allows you to store a private password that others won’t be able to see. * You can update your password at any time. */ contract PasswordStore { error PasswordStore__NotOwner(); address private s_owner; //this is not really private //all …
Find The Bug in this Smart Contract [series] 2024 Read More »
![Find The Bug in this Smart Contract [series] 2024](https://blog.learnhubafrica.org/wp-content/uploads/2024/01/Find-The-Bug-in-this-Smart-Contract-series-1024x535.png)


