Skip to content

Commit

Permalink
Update deploy env
Browse files Browse the repository at this point in the history
  • Loading branch information
yutou committed Apr 14, 2024
1 parent 9e83d08 commit 9aaacf2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/MarryMe.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ contract MarryMe is Ownable {
}

function confirmProposal(address addressA, string memory infoB) external returns (uint64) {
// real schema is :[{"name":"addressA","type":"address"},{"name":"addressB","type":"address"},{"name":"infoA","type":"string"},{"name":"infoB","type":"string"}]
// test schema: https://testnet-scan.sign.global/schema/onchain_evm_11155111_0x7
// real schema is : [{"name":"addressA","type":"address"},{"name":"addressB","type":"address"},{"name":"infoA","type":"string"},{"name":"infoB","type":"string"}]
address addressB = _msgSender();
string memory infoA = proposalInfo[addressA];

Expand Down

0 comments on commit 9aaacf2

Please sign in to comment.