Added serialization tests for chatReference, and grouped with other serialization tests into a single package.

This commit is contained in:
CalDescent
2023-01-14 10:38:50 +00:00
parent 02d5043ef7
commit 476fdcb31d
4 changed files with 108 additions and 2 deletions

View File

@@ -85,6 +85,10 @@ public class ChatTransactionData extends TransactionData {
return this.chatReference;
}
public void setChatReference(byte[] chatReference) {
this.chatReference = chatReference;
}
public byte[] getData() {
return this.data;
}