Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/specs/interop/interopmessages.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ contract InteropCenter {
uint256 messageNum; // a 'nonce' to guarantee different hashes.
}

// Verifies if such interop message was ever producted.
// Verifies if such interop message was ever produced.
function verifyInteropMessage(bytes32 interopHash, Proof merkleProof) return bool;
}
```
Expand Down Expand Up @@ -79,7 +79,7 @@ only if someone has first called `signup_open()` on chain A.
```solidity
// Contract deployed on chain A.
contract SignupManager {
public bytes32 sigup_open_msg_hash;
public bytes32 signup_open_msg_hash;
function signup_open() onlyOwner {
// We are open for business
signup_open_msg_hash = InteropCenter(INTEROP_CENTER_ADDRESS).sendInteropMessage("We are open");
Expand Down
Loading