Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Transaction Receipt Not Available #15

Open
loganbonsignore opened this issue Sep 5, 2023 · 0 comments
Open

Transaction Receipt Not Available #15

loganbonsignore opened this issue Sep 5, 2023 · 0 comments

Comments

@loganbonsignore
Copy link

I'm having an issue where I cannot get a transaction receipt for a transaction returned by the getBlockByNumber.

This is the getBlockByNumber request:

curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":["0x19ff37", true],"id":1}' -H 'Content-Type: application/json' https://evm.nodeinfo.cc 

Which returns this data:

{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "difficulty": "0x0",
        "extraData": "0x",
        "gasLimit": "0x989680",
        "gasUsed": "0x0",
        "hash": "0x569f3afdf3e098317f9f54c2dce7525779cca26806731f601f8e3f8bc5e41ead",
        "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
        "miner": "0x23c0a694d6c144e035a3c22e60f71965ca33ab1f",
        "mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
        "nonce": "0x0000000000000000",
        "number": "0x19ff37",
        "parentHash": "0x10441b937ef219a9a16062fc34a1e3868a4574a69792bba713322696b78803e0",
        "receiptsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
        "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
        "size": "0x88a",
        "stateRoot": "0x569f3afdf3e098317f9f54c2dce7525779cca26806731f601f8e3f8bc5e41ead",
        "timestamp": "0x61a2067e",
        "totalDifficulty": "0x0",
        "transactions": [
            {
                "blockHash": "0x569f3afdf3e098317f9f54c2dce7525779cca26806731f601f8e3f8bc5e41ead",
                "blockNumber": "0x19ff37",
                "from": "0x517fe50d9d3c7c796c31604f5e87dbeea13b1d5a",
                "gas": "0x5208",
                "gasPrice": "0x12a05f200",
                "hash": "0x4f5e05be06eed1332599090aa21daeb10e51bc1a40d49dd7ecd4c30071640747",
                "input": "0x",
                "nonce": "0xe",
                "to": "0x0d0707963952f2fba59dd06f2b425ace40b492fe",
                "transactionIndex": "0x0",
                "value": "0x2b3a911e94da4c200",
                "v": "0xd0",
                "r": "0x83020badc4821f495ba94bac1509b781be20a22db2d925d2271c698f38587930",
                "s": "0x178c8d0644735361351d71d949f2297cc9d91a21f6476fde48571e76dd688b41"
            }
        ],
        "transactionsRoot": "0xeee755b00e409d0c104e91d60746e2c3a62f14c229c15a306f40055c8cbf0b43",
        "uncles": []
    }
}

When I request the transaction receipt of this transaction, I get no response:

curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getTransactionByHash","params":["0x4f5e05be06eed1332599090aa21daeb10e51bc1a40d49dd7ecd4c30071640747"],"id":1}' -H 'Content-Type: application/json' https://evm.nodeinfo.cc
{"jsonrpc":"2.0","id":1,"result":null}

When looking at the explorer results are blank.

What does this mean? As an indexer should I determine this transaction to be valid or invalid? I expected there to be a transaction receipt with a failed status but instead there is nothing.

Thanks in advance.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant