The problem that sui_getTransactionBlock cannot obtain balance changes

I want to get the balance change of a transaction, I use sui_getTransactionBlock. This is my request and response

curl --location --request POST 'https://fullnode.testnet.sui.io:443/' \
--header 'Content-Type: application/json' \
--data-raw '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "sui_getTransactionBlock",
  "params": [
    "HiLMqXW1Yi1mdqb7T4eNKfhM2ppH4p7tEYzbmnA9ZXqw",
    {
      "showInput": false,
      "showRawInput": false,
      "showEffects": false,
      "showEvents": false,
      "showObjectChanges": false,
      "showBalanceChanges": true
    }
  ]
}'
{
    "jsonrpc": "2.0",
    "error": {
        "code": -32000,
        "message": "Error checking transaction input objects: ObjectNotFound { object_id: 0x14c07a67685721830b82be561c8c68abfcf466545a225854bb07936ec472a4b3, version: Some(SequenceNumber(107707)) }"
    },
    "id": 1
}
2 Likes