Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/sdk/main/include/FileCreateTransaction.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ class FileCreateTransaction : public Transaction<FileCreateTransaction>
/**
* Set the memo for the new file. The memo cannot exceed 100 bytes.
*
* @param contents The contents of the new file.
* @return A reference to this FileCreateTransaction object with the newly-set contents.
* @throws std::invalid_argument If the number of bytes exceeds 4096.
* @param memo The memo of the new file.
* @return A reference to this FileCreateTransaction object with the newly-set memo.
* @throws std::invalid_argument If the number of bytes exceeds 100.
* @throws IllegalStateException If this FileCreateTransaction is frozen.
*/
FileCreateTransaction& setFileMemo(std::string_view memo);
Expand Down
Loading