Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
uiii committed Oct 3, 2023
1 parent 329348d commit 68f7f1f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/repositories/runtimeMetadataRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ export class RuntimeMetadataRepository extends Dexie {
super("runtime-metadata-dexie");

this.version(1).stores({
specs: "[network+specVersion],network",
pallets: "[network+specVersion+name],[network+specVersion],network",
calls: "[network+specVersion+pallet+name],[network+specVersion+pallet],[network+pallet]",
events: "[network+specVersion+pallet+name],[network+specVersion+pallet],[network+pallet]"
specs: "[network+specVersion]",
pallets: "[network+specVersion+name],[network+specVersion]",
calls: "[network+specVersion+pallet+name],[network+specVersion+pallet]",
events: "[network+specVersion+pallet+name],[network+specVersion+pallet]"
});
}
}
Expand Down

0 comments on commit 68f7f1f

Please sign in to comment.