mirror of
https://github.com/status-im/sourcecred.git
synced 2025-01-19 17:09:39 +00:00
252400d5e7
Summary: These were completely wrong; my bad. [The docs][1] list `source` and `returnsData` but not `database`. I include the latter only for consistency with `Transaction`, and will consider removing them both as they are technically undocumented (though not underscore-named, so it’s not clear-cut). [1]: https://wchargin.github.io/better-sqlite3/api.html#properties-1 Test Plan: At a Node console: ```js > require("better-sqlite3")(":memory:").prepare("BEGIN") Statement { returnsData: false, source: 'BEGIN', database: Database { inTransaction: false, open: true, memory: false, readonly: false, name: ':memory:' } } ``` wchargin-branch: flow-better-sqlite3-statement-properties