IntersectMBO / cardano-node

The core component that is used to participate in a Cardano decentralised blockchain.
https://cardano.org
Apache License 2.0
3.06k stars 720 forks source link

Deposit missing after retiring pool #2392

Closed daoli closed 2 years ago

daoli commented 3 years ago

Hello,

I have retired a pool (https://pooltool.io/pool/d0cdb84791e3620f06b770bc632502a9ecc3aa3c3156aecc9d593ddb/ ) during epoch 248, following instructructions at https://cardano-foundation.gitbook.io/stake-pool-course/stake-pool-guide/stake-pool/retire_stakepool

$ cardano-cli stake-pool deregistration-certificate \
> --cold-verification-key-file cold.vkey \
> --epoch 248 \
> --out-file pool.dereg
$ cardano-cli transaction build-raw \
>     --tx-in e2e89eade8d714e7e13de7ec41fb8cf76a78c5aafbf354dd39f4cf807fc8a30a#0 \
>     --tx-out $(cat paymentwithstake.addr)+20006647019 \
>     --ttl 21282739 \
>     --fee 180000 \
>     --out-file tx.raw \
>     --certificate-file pool.dereg
$ cardano-cli transaction sign \
>     --tx-body-file tx.raw \
>     --signing-key-file payment.skey \
>     --signing-key-file stake.skey \
>     --signing-key-file cold.skey \
>     --mainnet \
>     --out-file tx.signed
$ cardano-cli transaction submit \
>     --tx-file tx.signed \
>     --mainnet
Transaction successfully submitted.
$ cardano-cli query stake-address-info --address $(cat stake.addr) --mainnet --allegra-era
[
    {
        "address": "stake1uxrf70gcnx0nne02l2w2kzy99w4cp9mjhuzm5e6hpxfvjzgphsycx",
        "delegation": "pool16rxms3u3ud3q7p4hwz7xxfgz48kv823ux9t2anyaty7akm0mtjx",
        "rewardAccountBalance": 0
    }
]

But I could find the pool deposit anywhere. Is there anything I'm missing? Thank you.

Pool ID: d0cdb84791e3620f06b770bc632502a9ecc3aa3c3156aecc9d593ddb
stake.addr: stake1uxrf70gcnx0nne02l2w2kzy99w4cp9mjhuzm5e6hpxfvjzgphsycx
paymentwithstake.addr: addr1q8dxvamz6cjcmuh7hcy9krxtc0m4sh8juh678zzuc4ffy9yxnu733xvl88j7475u4vyg22atszth90c9hfn4wzvjeyysm0tqd8

Update: payment.addr: addr1v8dxvamz6cjcmuh7hcy9krxtc0m4sh8juh678zzuc4ffy9qu2arpp

Jimbo4350 commented 2 years ago

Closing this. If this is still relevant please re-open.