Skip to content

Commit 0a81550

Browse files
fix: activate storage provider methods for bsv desktop (#683)
1 parent cd2af75 commit 0a81550

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

pkg/storage/internal/server/rpc_storage_provider.gen.go

Lines changed: 22 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/wdk/storage.interface.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,16 @@ type WalletStorageProvider interface {
6969
// GetSyncChunk retrieves a chunk of sync data for a user between two storages using the provided synchronization arguments.
7070
// Skipped in WalletStorage interface and not exposed in StorageManager.
7171
// @Sync
72-
// @NonRPC
7372
GetSyncChunk(ctx context.Context, args RequestSyncChunkArgs) (*SyncChunk, error)
7473

7574
// FindOrInsertSyncStateAuth retrieves an existing sync state or inserts a new one based on the provided authentication and storage details.
7675
// Skipped in WalletStorage interface and not exposed in StorageManager.
7776
// @Sync
78-
// @NonRPC
7977
FindOrInsertSyncStateAuth(ctx context.Context, auth AuthID, storageIdentityKey, storageName string) (*FindOrInsertSyncStateAuthResponse, error)
8078

8179
// ProcessSyncChunk processes a sync chunk for a user, applying the changes contained within it.
8280
// Skipped in WalletStorage interface and not exposed in StorageManager.
8381
// @Sync
84-
// @NonRPC
8582
ProcessSyncChunk(ctx context.Context, args RequestSyncChunkArgs, chunk *SyncChunk) (*ProcessSyncChunkResult, error)
8683

8784
// AbortAction aborts a transaction that is in progress and has not yet been finalized or sent to the network.

0 commit comments

Comments
 (0)