Skip to content

Commit

Permalink
fix: unhandled contract call event handled
Browse files Browse the repository at this point in the history
  • Loading branch information
talha-trili committed Oct 17, 2024
1 parent a78f1de commit 09b2901
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ private void OnEventReceived(string jsonEventData)
break;
case "EventTypeOperationInjected": break;
case "EventTypeOperationCompleted":
case "ContractCallInjected":
var operationResult = JsonConvert.DeserializeObject<OperationResponse>(eventData.Data);
_operationTcs.TrySetResult(operationResult);
break;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "com.trilitech.tezos-unity-sdk",
"version" : "4.0.0-preview.4",
"version" : "4.0.0-preview.5",
"unity" : "2021.3",
"displayName" : "Tezos Unity SDK",
"description" : "Unity SDK for Tezos: Seamlessly Integrate Tezos with Your Unity Projects\n\nThis SDK empowers developers to easily incorporate Tezos blockchain functionality into Unity games or applications. Designed for efficiency and ease of use, it's the perfect tool for bringing blockchain capabilities to your Unity creations.\n\nFor detailed documentation, visit: https://docs.tezos.com/unity/\n\nGet Involved:\n- Join our vibrant community on Discord: https://discord.gg/tezos\n- Explore funding opportunities: https://grants.tezos.foundation/",
Expand Down

0 comments on commit 09b2901

Please sign in to comment.