Irys-xyz / arweave-js-sdk

JS SDK for Irys on Arweave
110 stars 95 forks source link

Typo in the docs #45

Closed pyoner closed 2 years ago

pyoner commented 2 years ago

In the example%20%7B) of lazy funding, balance check is wrong

// If you don't have enough balance for the upload
if (balance.isGreaterThan(price)) {
...
}

it should be balance.isLessThan

// If you don't have enough balance for the upload
if (balance.isLessThan(price)) {
...
}