mirror of
https://github.com/mempool/mempool.git
synced 2025-03-26 17:51:45 +01:00
50kb -> 100kb
This commit is contained in:
parent
57a05c80a2
commit
3486c35f5e
@ -397,8 +397,8 @@ export function extractInscriptionData(raw: Uint8Array, pointer: number): Inscri
|
||||
|
||||
return {
|
||||
content_type_str: contentType,
|
||||
body: combinedData.slice(0, 50_000), // Limit body to 50 kB for now
|
||||
is_cropped: combinedData.length > 50_000,
|
||||
body: combinedData.slice(0, 100_000), // Limit body to 100 kB for now
|
||||
is_cropped: combinedData.length > 100_000,
|
||||
body_length: combinedData.length,
|
||||
delegate_txid: getKnownFieldValue(fields, knownFields.delegate) ? bytesToHex(getKnownFieldValue(fields, knownFields.delegate).reverse()) : null
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user