Skip to content

Commit f2a10d7

Browse files
committed
update max bytesize
1 parent 7ec3708 commit f2a10d7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Contracts.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const Contracts: React.FC<Props> = ({ provider, contracts, setContracts, updateU
5353
</Card.Header>
5454
<Card.Body>
5555
<div style={{ margin: '5px', width: '100%' }}>
56-
<strong>Contract type:</strong>
56+
<strong>Contract type: </strong>
5757
<span>{contractInfo.contract.addressType}</span><br/>
5858
<strong>Contract address</strong>
5959
<CopyText>{contractInfo.contract.address}</CopyText>
@@ -108,7 +108,7 @@ const Contracts: React.FC<Props> = ({ provider, contracts, setContracts, updateU
108108
<p>{contractInfo.utxos?.reduce((acc, utxo) => acc + utxo.satoshis, 0n).toString()} satoshis</p>
109109
}
110110
<strong>Contract size</strong>
111-
<p>{contractInfo.contract.bytesize} bytes (max 1650)</p>
111+
<p>{contractInfo.contract.bytesize} bytes (max 10,000)</p>
112112
</div>
113113
</Card.Body>
114114
</Card>

0 commit comments

Comments
 (0)