45d7c60608
* Patch available private contracts during private transaction * Key acl ABI added * Work with secret store keys moved to the separate struct * Private tx test refactored * Revert "Private tx test refactored" This reverts commit 476c132d692c7a886bc7b7cd7fe47b3d7692bd63. * Test for calling private contract from another one added * Test fixed * Redundant tab removed * ACL contract processing fixed, test added * Merge with head * Expect replaced with closure
44 lines
547 B
JSON
44 lines
547 B
JSON
[
|
|
{
|
|
"constant": true,
|
|
"inputs": [
|
|
{
|
|
"name":"user",
|
|
"type":"address"
|
|
}
|
|
],
|
|
"name": "availableKeys",
|
|
"outputs": [
|
|
{
|
|
"name": "",
|
|
"type": "bytes32[]"
|
|
}
|
|
],
|
|
"payable": false,
|
|
"stateMutability": "view",
|
|
"type": "function"
|
|
},
|
|
{
|
|
"constant":true,
|
|
"inputs": [
|
|
{
|
|
"name":"user",
|
|
"type":"address"
|
|
},
|
|
{
|
|
"name":"document",
|
|
"type":"bytes32"
|
|
}
|
|
],
|
|
"name":"checkPermissions",
|
|
"outputs": [
|
|
{
|
|
"name":"",
|
|
"type":"bool"
|
|
}
|
|
],
|
|
"payable":false,
|
|
"type":"function"
|
|
}
|
|
]
|