# Refund after verify_deposit — request_refund blocked
Relayer already called `verify_deposit`, UTXO is in `verified_deposit_utxo`,
nBTC minted. User tries `request_refund` for the same UTXO — fails immediately
because UTXO is already finalized.
## File References
| # | Method | File |
|---|--------|------|
| 1 | `get_user_deposit_address` | `contracts/satoshi-bridge/src/api/bridge.rs:406` |
| 2 | `verify_deposit` | `contracts/satoshi-bridge/src/api/bridge.rs:22` |
| 3 | `verify_transaction_inclusion` | `contracts/satoshi-bridge/src/btc_light_client/mod.rs:113` |
| 4 | `verify_deposit_callback` | `contracts/satoshi-bridge/src/btc_light_client/deposit.rs:147` |
| 5 | `mint` | `contracts/nbtc/src/lib.rs:118` |
| 6 | `mint_callback` | `contracts/satoshi-bridge/src/nbtc/mint.rs:46` |
| 7 | `request_refund` | `contracts/satoshi-bridge/src/api/bridge.rs:426` |
## Sequence Diagram
```mermaid
%%{init: {'theme': 'base', 'themeVariables': {'actorTextColor': '#000000', 'actorLineColor': '#333333', 'signalColor': '#333333', 'signalTextColor': '#000000', 'noteBkgColor': '#fff9c4', 'noteTextColor': '#000000', 'messageFontSize': '14px'}}}%%
sequenceDiagram
autonumber
box rgb(224, 224, 224) Off-chain
participant U as User
end
box rgb(255, 224, 178) Bitcoin
participant BTC as Bitcoin Network
end
box rgb(224, 224, 224) Off-chain
participant R as Relayer
end
box rgb(187, 222, 251) NEAR Protocol
participant B as btc_connector
(satoshi-bridge)
participant LC as BTC Light Client
participant N as nBTC Contract
end
U->>B: get_user_deposit_address(DepositMsg {
recipient_id, refund_address: "bc1q..."})
📄 api/bridge.rs:406
B-->>U: BTC deposit address
U->>BTC: Send BTC to deposit address
Note over BTC: Transaction confirmed
R->>B: verify_deposit(deposit_msg, tx_proof)
📄 api/bridge.rs:22
B->>LC: verify_transaction_inclusion(tx_id, merkle_proof)
📄 btc_light_client/mod.rs:113
LC-->>B: valid
Note over B: verify_deposit_callback
📄 btc_light_client/deposit.rs:147
B->>N: mint(recipient_id, mint_amount)
📄 nbtc/src/lib.rs:118
N-->>B: OK
Note over B: mint_callback
📄 nbtc/mint.rs:46
B-->>U: nBTC credited to recipient
Note over U,B: User tries to request refund
rect rgb(255, 200, 200)
U->>B: request_refund(deposit_msg, tx_proof)
📄 api/bridge.rs:426
Note over B: PANIC: "UTXO already verified via deposit"
end
Note over B: Deposit completed, nBTC minted,
refund impossible
```