Skip to content

Commit

Permalink
Fixed canonical ordering for parameter types so that transactions go …
Browse files Browse the repository at this point in the history
…through.
  • Loading branch information
BellringerQuinn committed Nov 30, 2023
1 parent 0f0eeb6 commit f8e7498
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ public class DelayedEncode : SequenceSDK.WaaS.Transaction
{
public const string TypeIdentifier = "delayedEncode";
public DelayedEncodeData data { get; private set; }
public string type { get; private set; } = TypeIdentifier;
public string to { get; private set; }
public string type { get; private set; } = TypeIdentifier;
public string value { get; private set; }

public DelayedEncode(string to, string value, DelayedEncodeData data)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ namespace SequenceSDK.WaaS
[Serializable]
public class SendERC1155Values
{
public string id { get; private set; }
public string amount { get; private set; }
public string id { get; private set; }

public SendERC1155Values(string id, string amount)
{
Expand Down

0 comments on commit f8e7498

Please sign in to comment.