I have used the steps for revoking read permissions for one stream created in which I have stored some data.As per site directions at
https://www.multichain.com/getting-started/ section 5, the moment the permissions are revoked, the data should not be seen on the second server, but it is seen always irrespective. Steps server 1 are
- create stream store1 '{"restrict":"read,write"}'
- publish store1 id_123456 '{"json":{"source":"Singapore","destination":"Los Angeles"}}' offchain
- publish store1 id_234567 '{"json":{"source":"Rotterdam","destination":"New York"}}' offchain
- grant 1K5FhCZgZXs7GPDiE5mz8udRCyuWFbaMgbWXMj store1.read (## to grant the second server read permissions and after this i am able to see the data at second server##)
- revoke 1K5FhCZgZXs7GPDiE5mz8udRCyuWFbaMgbWXMj store1.read
but after this step too....I am able to read the data at second server..
where I am doing wrong?