File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 8
8
9
9
-- A utxo view which shows all unspent transaction outputs including the un-redeemed redeem
10
10
-- addresses.
11
- create view utxo_byron_view as select
11
+ create or replace view utxo_byron_view as select
12
12
tx_out.*
13
13
from tx_out left outer join tx_in
14
14
on tx_out .tx_id = tx_in .tx_out_id and tx_out .index = tx_in .tx_out_index
@@ -19,7 +19,7 @@ create view utxo_byron_view as select
19
19
-- addresses.
20
20
-- This should produce the same query results as the above `utxo_byron_view` for Shelley addresses
21
21
-- and non-redeem Byron addresses.
22
- create view utxo_view as select
22
+ create or replace view utxo_view as select
23
23
tx_out.*
24
24
from tx_out
25
25
left outer join tx_in on tx_out .tx_id = tx_in .tx_out_id and tx_out .index = tx_in .tx_out_index
You can’t perform that action at this time.
0 commit comments