Hi everyone!
Cannot see pending block but it exists in the internet https://nanohistorycrawler.cc/explorer/account/nano_3n3bod7cdqbit6tshm3cfdgg5fnf3k6xr6hmgya1xnsdc3q7ijufbj145o3a/
I've expanded node with such a way:
sudo docker run -d --restart=unless-stopped -p 7075:7075/udp -p 7075:7075 -p 7076:7076 -p 7078:7078 -v 127.0.0.1:/root --name=nano_node nanocurrency/nano:latest
Using a rpc request:
curl -d '{"action": "pending", "account": "nano_3n3bod7cdqbit6tshm3cfdgg5fnf3k6xr6hmgya1xnsdc3q7ijufbj145o3a","count": "1","include_active": "true"}' -H "Content-Type: application/json" -X POST http://localhost:7076
And got this rexponse:
{
"blocks": ""
}
Also tried this request:
curl -d '{"action": "pending_exists", "hash": "1DC0658DBB6C85FF7845E608B2442B35BF14A3D7BE769369880EA2D39116E2E6","include_active": "true"}' -H "Content-Type: application/json" -X POST http://localhost:7076/
Answer:
{
"error": "Block not found"
}
What did go wrong?