Skip to content

Commit

Permalink
Fixed bug with game items transfer not working; (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-karuna authored Jun 26, 2023
1 parent 1c7925f commit d68cf0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [unreleased]
### Fixed
- [Bug](https://github.com/trilitech/tezos-unity-sdk/issues/99) with game items transfer not working


## [1.5.0] - 2023-06-22
### Fixed
- [Bug](https://github.com/trilitech/tezos-unity-sdk/issues/68) with UnityBeacon gameobject
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Scripts/Beacon/BeaconConnectorDotNet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public async void RequestTezosOperation(
new JObject
{
["entrypoint"] = entryPoint,
["value"] = JObject.Parse(arg)
["value"] = JToken.Parse(arg)
}
);

Expand Down

0 comments on commit d68cf0b

Please sign in to comment.