@@ -137,8 +137,7 @@ impl zp_tx::components::orchard::MapAuth<orchard::bundle::Authorized, orchard::b
137137 }
138138}
139139
140- // FIXME: is this implemetation correct?
141- #[ cfg( zcash_unstable = "nu6" ) ]
140+ #[ cfg( zcash_unstable = "nu6" /* TODO nu7 */ ) ]
142141impl zp_tx:: components:: issuance:: MapIssueAuth < orchard:: issuance:: Signed , orchard:: issuance:: Signed >
143142 for IdentityMap
144143{
@@ -157,12 +156,10 @@ impl<'a> zp_tx::Authorization for PrecomputedAuth<'a> {
157156 type SaplingAuth = sapling_crypto:: bundle:: Authorized ;
158157 type OrchardAuth = orchard:: bundle:: Authorized ;
159158
160- // FIXME: is this correct?
161- #[ cfg( zcash_unstable = "nu6" ) ]
159+ #[ cfg( zcash_unstable = "nu6" /* TODO nu7 */ ) ]
162160 type OrchardZsaAuth = orchard:: bundle:: Authorized ;
163161
164- // FIXME: is this correct?
165- #[ cfg( zcash_unstable = "nu6" ) ]
162+ #[ cfg( zcash_unstable = "nu6" /* TODO nu7 */ ) ]
166163 type IssueAuth = orchard:: issuance:: Signed ;
167164}
168165
@@ -294,10 +291,8 @@ impl<'a> PrecomputedTxData<'a> {
294291 all_prev_outputs : all_previous_outputs,
295292 } ,
296293 } ;
297- let tx_data: zp_tx:: TransactionData < PrecomputedAuth > = alt_tx
298- . into_data ( )
299- // FIXME: do we need to pass another arg values or orchard_zsa and issue instead of IdentityMap?
300- . map_authorization (
294+ let tx_data: zp_tx:: TransactionData < PrecomputedAuth > =
295+ alt_tx. into_data ( ) . map_authorization (
301296 f_transparent,
302297 IdentityMap ,
303298 IdentityMap ,
0 commit comments