Closed TimCliff closed 5 years ago
To help implement this issue, I am using the following tintoy ref ed1ca68
.
# Start the tintoy tag with transaction-status-api enabled ...
docker run -d -p 8090:8090 inertia/tintoy:transaction-status-api
# After waiting for the node to fully sych, check list of methods ...
curl -s --data '{"jsonrpc":"2.0", "method":"jsonrpc.get_methods", "id":1}' http://localhost:8090 | jq
# If we see transaction_status_api.find_transaction, we're ready to test ...
curl -s --data '{"jsonrpc":"2.0", "method":"transaction_status_api.find_transaction", "params": {"transaction_id": "0000000000000000000000000000000000000000"}, "id":1}' http://localhost:8090 | jq
{
"jsonrpc": "2.0",
"result": {
"status": "unknown"
},
"id": 1
}
TEST_NODE=http://localhost:8090 rake scrape:api_defs
In Steem issue https://github.com/steemit/steem/issues/2458, a new Transaction polling API was added. This new API should be documented in the dev portal.