Ethernaut-08-Vault
Challenge
Unlock the vault to pass the level!
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Vault {
bool public locked;
bytes32 private password;
constructor(bytes32 _password) {
locked = true;
passwor...
goodhacker.hashnode.dev1 min read