Skip to content

Commit a85c4b2

Browse files
committedAug 3, 2021
Fixed VMtests
1 parent f9af7ca commit a85c4b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Phantasma.Tests/VMTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ public void TestTeam()
829829
// Encode With Base16 and decode
830830
var teamEncode = Base16.Encode(VMObject.FromStruct(team).Serialize());
831831
var teamBytes = Base16.Decode(teamEncode);
832-
var teamDecode = Serialization.Unserialize<Team>(teamBytes);
832+
var teamDecode = VMObject.FromBytes(teamBytes).AsStruct<Team>();
833833

834834
Assert.IsTrue(teamDecode.TeamID == teamID);
835835
Assert.IsTrue(teamDecode.Player == Address.Null);

0 commit comments

Comments
 (0)