Skip to content

Commit

Permalink
chore: coderabbitai fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pankcuf committed Nov 8, 2024
1 parent f494e28 commit 1828f75
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ - (instancetype)initWithWallet:(DSWallet *)wallet inContext:(NSManagedObjectCont
self.providerUpdateServiceTransactions = [NSMutableDictionary dictionary];
self.providerUpdateRegistrarTransactions = [NSMutableDictionary dictionary];
self.providerUpdateRevocationTransactions = [NSMutableDictionary dictionary];
self.assetLockTransactions = [NSMutableDictionary dictionary];
self.assetUnlockTransactions = [NSMutableDictionary dictionary];
self.creditFundingTransactions = [NSMutableDictionary dictionary];
self.managedObjectContext = [NSManagedObjectContext chainContext];
self.wallet = wallet;
Expand All @@ -66,7 +68,7 @@ - (instancetype)initWithWallet:(DSWallet *)wallet inContext:(NSManagedObjectCont
}

- (NSArray<NSMutableDictionary *> *)transactionDictionaries {
return @[self.providerRegistrationTransactions, self.providerUpdateServiceTransactions, self.providerUpdateRegistrarTransactions, self.providerUpdateRevocationTransactions, self.creditFundingTransactions];
return @[self.providerRegistrationTransactions, self.providerUpdateServiceTransactions, self.providerUpdateRegistrarTransactions, self.providerUpdateRevocationTransactions, self.creditFundingTransactions, self.assetLockTransactions, self.assetUnlockTransactions];
}


Expand Down

0 comments on commit 1828f75

Please sign in to comment.