Skip to content

why there are 3 transactions in Block 0, but there no transactionReceipts of these 3 transactions? #6156

Closed
@PikaZ76

Description

@PikaZ76

I'm new guy and very interesting in Tron, but I notice there are 3 transactions in block 0, but can't get transactionReceipts for these transactions,

so what happend for transactions in block 0? why the transaction receipts or transaction Info were missed in api ?
jsonrpc call:

{
	"jsonrpc": "2.0",
	"method": "eth_getBlockByNumber",
	"params": [0, true],
	"id": 1
}

we can see there are 3 transactions in this block:

{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "baseFeePerGas": "0x0",
        "difficulty": "0x0",
        "extraData": "0x",
        "gasLimit": "0x0",
        "gasUsed": "0x0",
        "hash": "0x00000000000000001ebf88508a03865c71d452e25f4d51194196a1d22b6653dc",
        "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
        "miner": "0x0000000000000000000000000000000000000000",
        "mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
        "nonce": "0x0000000000000000",
        "number": "0x0",
        "parentHash": "0xe58f33f9baf9305dc6f82b9f1934ea8f0ade2defb951258d50167028c780351f",
        "receiptsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
        "sha3Uncles": "0x0000000000000000000000000000000000000000000000000000000000000000",
        "size": "0x216",
        "stateRoot": "0x",
        "timestamp": "0x0",
        "totalDifficulty": "0x0",
        "transactions": [
            "0x788b4d0ca432b3d07f895dffe80429bf58398d0e86222460b07f9db38e238803",
            "0xdfb4a633165cb85963ec1edfb4c9283644a3e136b77c063f4ba2e39307863a75",
            "0x25b18a55f86afb10e7aca38d0073d04c80397c6636069193953fdefaea0b8369"
        ],
        "transactionsRoot": "0x8ef446bf3f395af929c218014f6101ec86576c5f61b2ae3236bf3a2ab5e2fecd",
        "uncles": []
    }
}

but there are no result for method eth_getTransactionReceipt:

{
	"jsonrpc": "2.0",
	"method": "eth_getTransactionReceipt",
	"params": ["0x788b4d0ca432b3d07f895dffe80429bf58398d0e86222460b07f9db38e238803"],
	"id": 1
}

{
	"jsonrpc": "2.0",
	"method": "eth_getTransactionReceipt",
	"params": ["0xdfb4a633165cb85963ec1edfb4c9283644a3e136b77c063f4ba2e39307863a75"],
	"id": 1
}

{
	"jsonrpc": "2.0",
	"method": "eth_getTransactionReceipt",
	"params": ["0x25b18a55f86afb10e7aca38d0073d04c80397c6636069193953fdefaea0b8369"],
	"id": 1
}

they all get this...


{
    "jsonrpc": "2.0",
    "id": 1,
    "result": null
}

also empty for wallet/gettransactioninfobyblocknum by post {"num":0}:

{}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions