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 88
99-- A utxo view which shows all unspent transaction outputs including the un-redeemed redeem
1010-- addresses.
11- create view utxo_byron_view as select
11+ create or replace view utxo_byron_view as select
1212 tx_out.*
1313 from tx_out left outer join tx_in
1414 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
1919-- addresses.
2020-- This should produce the same query results as the above `utxo_byron_view` for Shelley addresses
2121-- and non-redeem Byron addresses.
22- create view utxo_view as select
22+ create or replace view utxo_view as select
2323 tx_out.*
2424 from tx_out
2525 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