Use parseInt() rather than static int values.

This commit is contained in:
Dennis Dawson
2022-01-10 11:46:07 -08:00
committed by GitHub
parent 3a49c55a2d
commit a740c565bd

View File

@@ -105,7 +105,7 @@ async function createSellOffer() {
"Account": wallet.classicAddress,
"TokenID": tokenId.value,
"Amount": amount.value,
"Flags": 1 //parseInt(flags.value)
"Flags": parseInt(flags.value)
}
// Submit signed blob --------------------------------------------------------