anza-xyz / octane

Octane is a gasless transaction relayer for Solana.
Apache License 2.0
218 stars 128 forks source link

Import the memory store explicitly #7

Closed steveluscher closed 2 years ago

steveluscher commented 2 years ago

The cache-manager module uses a dynamic import to pull in some of its default stores (namely the memory and none stores). When we build the app, this dynamic import loses its reference directory (./stores) and can no longer find the module:

image

Instead, in this PR, we import it explicitly.