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 @@ -619,7 +619,7 @@ impl<T: Config> Pallet<T> {
619619 ) ?;
620620
621621 <AfloatTransactions < T > >:: try_mutate ( transaction_id, |transaction| -> DispatchResult {
622- let mut transaction = transaction. as_mut ( ) . ok_or ( Error :: < T > :: TransactionNotFound ) ?;
622+ let transaction = transaction. as_mut ( ) . ok_or ( Error :: < T > :: TransactionNotFound ) ?;
623623 transaction. seller_confirmation_date = Some ( confirmation_date) ;
624624 transaction. confirmed = confirmed;
625625 transaction. child_offer_id = Some ( child_offer_id) ;
@@ -718,7 +718,7 @@ impl<T: Config> Pallet<T> {
718718 } ) ?;
719719
720720 <AfloatTransactions < T > >:: try_mutate ( transaction_id, |transaction| -> DispatchResult {
721- let mut transaction = transaction. as_mut ( ) . ok_or ( Error :: < T > :: TransactionNotFound ) ?;
721+ let transaction = transaction. as_mut ( ) . ok_or ( Error :: < T > :: TransactionNotFound ) ?;
722722 transaction. completed = true ;
723723 Ok ( ( ) )
724724 } ) ?;
You canāt perform that action at this time.
0 commit comments