Skip to content
This repository has been archived by the owner on Jan 26, 2023. It is now read-only.

Commit

Permalink
Alias fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Jun 19, 2018
1 parent ce94810 commit 07f5568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WavesCS/Transactions/AliasTransaction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public override byte[] GetBody()
writer.Write(TransactionType.Alias);
writer.Write(SenderPublicKey);
writer.WriteShort(Alias.Length + 4);
writer.Write(0x02);
writer.Write((byte) 0x02);
writer.Write((byte) Scheme);
writer.WriteShort(Alias.Length);
writer.Write(Encoding.ASCII.GetBytes(Alias));
Expand Down

0 comments on commit 07f5568

Please sign in to comment.