@@ -13,7 +13,7 @@ use rocks_db::{
13
13
AccountNft , AccountNftBucket , AccountNftBucketKey , AccountNftChange , AccountNftChangeKey ,
14
14
AccountNftGrandBucket , AccountNftGrandBucketKey , AccountNftKey , BubblegumChange ,
15
15
BubblegumChangeKey , BubblegumEpoch , BubblegumEpochKey , BubblegumGrandEpoch ,
16
- BubblegumGrandEpochKey , ACC_BUCKET_INVALIDATE , ACC_GRAND_BUCKET_INVALIDATE ,
16
+ BubblegumGrandEpochKey , ACC_BUCKET_INVALIDATE , ACC_GRAND_BUCKET_INVALIDATED ,
17
17
BUBBLEGUM_GRAND_EPOCH_INVALIDATED ,
18
18
} ,
19
19
Storage ,
@@ -103,7 +103,7 @@ impl NftChangesTracker {
103
103
NftChangesTracker { sender }
104
104
}
105
105
106
- /// Persists given account NFT change into the sotrage , and, if the change is from the epoch
106
+ /// Persists given account NFT change into the storage , and, if the change is from the epoch
107
107
/// that is previous to the current epoch, then also notifies checksums calculator
108
108
/// about late data.
109
109
///
@@ -138,7 +138,7 @@ impl NftChangesTracker {
138
138
let grand_bucket = grand_bucket_for_bucket ( bucket) ;
139
139
let _ = batch_storage. put_acc_grand_bucket (
140
140
AccountNftGrandBucketKey :: new ( grand_bucket) ,
141
- ACC_GRAND_BUCKET_INVALIDATE ,
141
+ ACC_GRAND_BUCKET_INVALIDATED ,
142
142
) ;
143
143
let _ = batch_storage
144
144
. put_acc_bucket ( AccountNftBucketKey :: new ( bucket) , ACC_BUCKET_INVALIDATE ) ;
@@ -752,7 +752,7 @@ async fn update_acc_if_needed(
752
752
. acc_nft_grand_buckets
753
753
. put_async (
754
754
AccountNftGrandBucketKey :: new ( grand_bucket) ,
755
- ACC_GRAND_BUCKET_INVALIDATE ,
755
+ ACC_GRAND_BUCKET_INVALIDATED ,
756
756
)
757
757
. await ;
758
758
invalidated_grand_buckets. insert ( grand_bucket) ;
0 commit comments