Commit c63f41bf authored by Will Cory's avatar Will Cory

fix value -> val typo

prettier comments
parent 52fbbc50
...@@ -47,7 +47,7 @@ contract AssetReceiverTest is AssetReceiver_Initializer { ...@@ -47,7 +47,7 @@ contract AssetReceiverTest is AssetReceiver_Initializer {
attestationStation.attestations( attestationStation.attestations(
attestationData.about, attestationData.about,
attestationData.key, attestationData.key,
attestationData.value attestationData.val
), ),
"" ""
); );
......
...@@ -4,15 +4,15 @@ pragma solidity 0.8.15; ...@@ -4,15 +4,15 @@ pragma solidity 0.8.15;
import { Semver } from "@eth-optimism/contracts-bedrock/contracts/universal/Semver.sol"; import { Semver } from "@eth-optimism/contracts-bedrock/contracts/universal/Semver.sol";
/** /**
* @title AttestationStation * @title AttestationStation
* @dev Contract for creating attestations. * @dev Contract for creating attestations.
* @notice The AttestationStation contract is a contract for creating on chain attestations * @notice The AttestationStation contract is a contract for creating on chain attestations
* It has a very simple interface for creating attestations. * It has a very simple interface for creating attestations.
* This contract is not yet audited * This contract is not yet audited
*/ */
contract AttestationStation is Semver { contract AttestationStation is Semver {
/** /**
* @notice Struct representing data that is being attested * @notice Struct representing data that is being attested
* *
* @custom:field about Address being attested about (not creator/msg.sender) * @custom:field about Address being attested about (not creator/msg.sender)
* @custom:field key A bytes32 key for the attestation. * @custom:field key A bytes32 key for the attestation.
...@@ -26,9 +26,9 @@ contract AttestationStation is Semver { ...@@ -26,9 +26,9 @@ contract AttestationStation is Semver {
/** /**
* @notice Maps addresses to attestations * @notice Maps addresses to attestations
* @dev addresses map to attestations map of * @dev addresses map to attestations map of
* `about` addresses to key/values * about addresses to key/values
* key/values are a map of bytes32 to bytes * key/values are a map of bytes32 to bytes
*/ */
mapping(address => mapping(address => mapping(bytes32 => bytes))) public attestations; mapping(address => mapping(address => mapping(bytes32 => bytes))) public attestations;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment