ord
ord copied to clipboard
Minting Off By 1 Error
If a mint starts on block 40, ord will not let you mint until that block has already passed. Meaning the first block ord allows you to mint in is actually block 41.
I think there must something to ignore errors, I tried to find it last days, I think it's in core of ord wallet
We identified the issue here: https://github.com/ordinals/ord/blob/08bbf566502533217d7c5d24287e9f93b3bfc8a8/src/index/entry.rs#L66
It looks like the height
might be the last confirmed block and is 1 behind. If that's the intent, then one fix would be to have the statement be: if height < (start - 1)
or if (height + 1) < start
But perhaps there's a bug in height
causing the off-by-one. Thanks!
Love, Pizza Ninjas
this is fixed in this PR: https://github.com/ordinals/ord/pull/3645
Fixed in #3659. Thank you for reporting!