feat(database): type the return type of the gettransaction method
The getTransaction method did not have a return type specified. While this might be implied from inside of the function, properly defined types are a hallmark of a good TypeScript codebase. The return type here is SignedTransaction, so we just strictly add this to the function definition.
Loading
Please sign in to comment