You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to init a rescan of the walletdb with a specifiy height.
From the Wallet Admin Docs i find two differnet types of requests that should init the same rescan. But when I use those request according to my debug.log the rescan always start at block 0.
My requests: curl http://my-bcoin-node.com:8332/wallet/_admin/rescan -X POST '{"height": 481000}' curl http://my-bcion-node.com:8332/wallet/_admin/rescan?height=481000 -X POST (Basic Auth is left out but as the rescan starts - although at 0 height - i asume that this is not the problem)
Version: v1.0.0-beta.14
Maybe you can tell me if this is an issue or if I'm doing something wrong. Thanks!
The text was updated successfully, but these errors were encountered:
Ugh, pain to debug since you have to wait for it to rescan if entered incorrectly. One thing is to make sure to pass the body via the --data argument. i.e. --data '{"height": 481000}'. I did do that though and mine also started at 0 so we'll have to take a closer look.
I'm trying to init a rescan of the walletdb with a specifiy height.
From the Wallet Admin Docs i find two differnet types of requests that should init the same rescan. But when I use those request according to my debug.log the rescan always start at block 0.
My requests:
curl http://my-bcoin-node.com:8332/wallet/_admin/rescan -X POST '{"height": 481000}'
curl http://my-bcion-node.com:8332/wallet/_admin/rescan?height=481000 -X POST
(Basic Auth is left out but as the rescan starts - although at 0 height - i asume that this is not the problem)
Version: v1.0.0-beta.14
Maybe you can tell me if this is an issue or if I'm doing something wrong. Thanks!
The text was updated successfully, but these errors were encountered: