Skip to main content
Version: 5.7.0

RefreshBlockchainUserItems

Syncs the caller's user items with the item management attached blockchain. Results are reported asynchronously via an RTT event.

ServiceOperation
userItemsREFRESH_BLOCKCHAIN_USER_ITEMS

Usage

http://localhost:3000
SuccessCallback successCallback = (response, cbObject) =>
{
Debug.Log(string.Format("Success | {0}", response));
};
FailureCallback failureCallback = (status, code, error, cbObject) =>
{
Debug.Log(string.Format("Failed | {0} {1} {2}", status, code, error));
};

_bc.UserItemsService.RefreshBlockchainUserItems(successCallback, failureCallback);