It contains Escrow Contract implementation in Scilla.
References taken:
https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/payment/escrow/Escrow.sol
- primary: address of primary. Expected: [Success]
0x263c4ca003235af83c4f4bc065d00d4a67ffb617
. - transferPrimary: transfer primary. Expected: [Success] .
- depositsOf: deposits of the any
payee
. Expected: [Success] - deposit: deposit the
deposits
(_amount) topayee
. Expected: [Success] - withdraw: withdraw all
deposits
frompayee
. Expected: [Success]. - withdraw: withdraw all
deposits
frompayee
. Expected: Failure as the withdrawee_sender
is not primary. Error:not primary
.