We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9af7ca commit a85c4b2Copy full SHA for a85c4b2
Phantasma.Tests/VMTests.cs
@@ -829,7 +829,7 @@ public void TestTeam()
829
// Encode With Base16 and decode
830
var teamEncode = Base16.Encode(VMObject.FromStruct(team).Serialize());
831
var teamBytes = Base16.Decode(teamEncode);
832
- var teamDecode = Serialization.Unserialize<Team>(teamBytes);
+ var teamDecode = VMObject.FromBytes(teamBytes).AsStruct<Team>();
833
834
Assert.IsTrue(teamDecode.TeamID == teamID);
835
Assert.IsTrue(teamDecode.Player == Address.Null);
0 commit comments