-
A colleague asked... Why is it that when I look at the data under
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If the vstorage entry is updated multiple times in a single block, there will be multiple values in the array known as "cells". vstorage includes the history of values across blocks as well.
ack: @samsiegart |
Beta Was this translation helpful? Give feedback.
If the vstorage entry is updated multiple times in a single block, there will be multiple values in the array known as "cells".
vstorage includes the history of values across blocks as well.
@agoric/rpc
just polls the latest value periodically and takes the last/most recent value of the array.@agoric/casting
iterates and yields each individual value so followers can make sure they see every single update, even within the same block. This is useful for example when watching offer status updates, because each new offer shares/overwrites a single vstorage entry in the user's wallet.ack: @samsiegart