diff --git a/libraries/shared/factories/storage/README.md b/libraries/shared/factories/storage/README.md index f5628918..cd8dc792 100644 --- a/libraries/shared/factories/storage/README.md +++ b/libraries/shared/factories/storage/README.md @@ -9,7 +9,6 @@ The current approach for caching smart contract storage diffs assumes that you a The CSV file is expected to have 5 columns: contract address, block hash, block number, storage key, storage value. We have [a branch on vulcanize/parity-ethereum](https://github.com/vulcanize/parity-ethereum/tree/watch-storage-diffs) that enables running a node that writes storage diffs this way. -We also have [sample data](https://github.com/8thlight/maker-vulcanizedb/pull/132/files) that comes from running that node against Kovan through block 9796184. Looking forward, we would like to isolate this assumption as much as possible. We may end up needing to read CSV data that is formatted differently, or reading data from a non-CSV source, and we do not want resulting changes to cascade throughout the codebase. diff --git a/postgraphile/spec/helpers/ts_console.ts b/postgraphile/spec/helpers/ts_console.ts index 6a98d541..cae7febd 100644 --- a/postgraphile/spec/helpers/ts_console.ts +++ b/postgraphile/spec/helpers/ts_console.ts @@ -1,4 +1,4 @@ -// NOTE (jchristie@8thlight.com) This file helps Jasmine +// NOTE: This file helps Jasmine // comprehend TS sourcemaps by installing a reporter // specifically for TypeScript const TSConsoleReporter = require('jasmine-ts-console-reporter'); diff --git a/postgraphile/src/adapters/postgraphile.ts b/postgraphile/src/adapters/postgraphile.ts index 924fe3d5..17e4bf4e 100644 --- a/postgraphile/src/adapters/postgraphile.ts +++ b/postgraphile/src/adapters/postgraphile.ts @@ -2,7 +2,7 @@ import { RequestHandler } from 'express'; import { Server } from 'http'; import { PluginHookFn } from 'postgraphile/build/postgraphile/pluginHook'; -// NOTE (jchristie@8thlight.com) Shape of the middleware is not +// NOTE: Shape of the middleware is not // currently important to this application, but if a need arises, // any needed shape can be assigned from a custom type here. For // the time being, this is a named stub to provide clarity. @@ -14,7 +14,7 @@ export interface PostgraphileOptions { watchPg: boolean; enableCors: boolean; graphiql: boolean; - // NOTE (jchristie@8thlight.com) Shape of the middlewares is not + // NOTE: Shape of the middlewares is not // currently important to this application, but if a need arises, // any needed shape can be assigned from a custom type here. webSocketMiddlewares: object[];