Skip to content
Open
Show file tree
Hide file tree
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
13 changes: 7 additions & 6 deletions src/sdk/main/include/FeeComponents.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,13 @@ class FeeComponents
* @return The price for data retrieved from disk.
*/
[[nodiscard]] inline int64_t getResponseDiskByte() const { return mResponseDiskByte; }

/**
* Compare this FeeComponents to another and determine if they are equal.
*
* @param rhs The other FeeComponents with which to compare this FeeComponents.
* @return \c TRUE if this FeeComponents is the same as the input, otherwise \c FALSE.
*/
[[nodiscard]] bool operator==(const FeeComponents& rhs) const;

private:
Expand Down Expand Up @@ -326,12 +333,6 @@ class FeeComponents
*/
int64_t mResponseDiskByte = 0LL;

/**
* Compare two FeeComponents instances and determine if they represent an equivalent set of fees.
*
* @param rhs The right-hand side FeeComponents to compare.
* @return \c TRUE if this FeeComponents and \p rhs represent equivalent fee component values, otherwise \c FALSE.
*/
};

} // namespace Hiero
Expand Down
259 changes: 0 additions & 259 deletions src/sdk/main/include/impl/BaseNode.h

This file was deleted.

Loading