Skip to content

Commit bb917dc

Browse files
docs: updated docs
1 parent bbb63e5 commit bb917dc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cryptlex/lexfloatclient/lexfloatclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def SetFloatingClientMetadata(key, value):
8989
9090
Args:
9191
key (str): string of maximum length 256 characters with utf-8 encoding
92-
value (str): string of maximum length 256 characters with utf-8 encoding
92+
value (str): string of maximum length 4096 characters with utf-8 encoding
9393
9494
Raises:
9595
LexFloatClientException

cryptlex/lexfloatclient/lexfloatclient_exception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_error_message(code):
3737
if code == LexFloatStatusCodes.LF_E_METADATA_KEY_LENGTH:
3838
return 'Metadata key length is more than 256 characters.'
3939
if code == LexFloatStatusCodes.LF_E_METADATA_VALUE_LENGTH:
40-
return 'Metadata value length is more than 256 characters.'
40+
return 'Metadata value length is more than 4096 characters.'
4141
if code == LexFloatStatusCodes.LF_E_FLOATING_CLIENT_METADATA_LIMIT:
4242
return 'The floating client has reached it\'s metadata fields limit.'
4343
if code == LexFloatStatusCodes.LF_E_METER_ATTRIBUTE_NOT_FOUND:

0 commit comments

Comments
 (0)