You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ckb_cli_deploy:
git clone https://github.com/nervosnetwork/ckb-cli.git
cd ckb-cli
cargo install --path . -f --locked
export API_URL=https://testnet.ckbapp.dev/
ckb_contract_deploy:
git clone -b chore/contract-deployment https://github.com/synapseweb3/forcerelay/
cd forcerelay/tools/ibc-test/contracts/deployment
mkdir tx && mkdir migration
./upload.sh connection https://testnet.ckbapp.dev/ ckt1qzda0cr08m85hc8jlnfp3zer7xulejywt49kt2rr0vthywaa50xwsq2v6vh7fgskk26raed4r6sv6xneyq9ls7cfywmu9
./upload.sh channel https://testnet.ckbapp.dev/ ckt1qzda0cr08m85hc8jlnfp3zer7xulejywt49kt2rr0vthywaa50xwsq2v6vh7fgskk26raed4r6sv6xneyq9ls7cfywmu9
./upload.sh packet https://testnet.ckbapp.dev/ ckt1qzda0cr08m85hc8jlnfp3zer7xulejywt49kt2rr0vthywaa50xwsq2v6vh7fgskk26raed4r6sv6xneyq9ls7cfywmu9
# when deploying the packet contract for the first time, it will prompt Send transaction error: jsonrpc error: Server error: PoolRejectedRBF: RBF rejected: Tx's current fee is 290221, expect it to >= 725776 to replace old txs, and then resend the transaction. Prompt Invalid cell status: unknown, out_point: OutPoint { tx_hash: Byte32(0xdeaa7f2ffc5cad4af53559c66b39643ad241b8db3317c847fe2efc1e2c2a7819), index: Uint32(0x01000000) }, found query https://testnet.ckbapp.dev / The get_cell interface does not contain OutPoint { tx_hash: Byte32 (0xdeaa7f2ffc5cad4af53559c66b39643ad241b8db3317c847fe2efc1e2c2a7819), index: Uint32(0x01000000) } This, but the transaction constructed by ckb-cli contains this, using the local index?
The text was updated successfully, but these errors were encountered:
Before deploying the contract, upload.sh was executed and waited for several minutes. The next contract was sent after the previous contract was deployed successfully.
Bug Report
The packet contract is deployed here, and a PoolRejectedRBF error occurs. Then it is resent and an invalid cell is reported
Current Behavior
Expected Behavior
I expect the ckb-cli deployment transaction get_cell will not get the death cell.
Environment
MacOS 12.1
Additional context/Screenshots
This bug can reproduced by these steps:
The text was updated successfully, but these errors were encountered: