Roman Useinov

Results 157 comments of Roman Useinov

yes, our weave apps rely on tendermint running elsewhere rather than the same process

The issue with the current approach is that it assumes that the app bundles terndermint. Our apps communicate to tendermint via tcp socket and don't have tendermint runtime dependency.

First thing I wanted to mention - we have some helpers that make sure a certain value is set, or they panic/return error. How do we deal with that in...

Here's my temp fix, which is verbose, but it does the job. ```rust pub struct SubscriptionDTO { pub data: Subscription, } impl Serialize for SubscriptionDTO { fn serialize( &self, serializer:...

@max-block TBH I don't remember anymore, but I think not. Haven't been interfacing with MongoDB lately, therefore I have got no recent experience with BSON.

I have implemented this directly in my application in a very minimal fashion, looks similar to this: ```rust #[derive(Serialize)] struct BillingPortalParams { pub customer: String, pub return_url: String, } #[derive(Deserialize)]...

One other thing that I have noticed is that the current implementation fails when receiving test-webhooks. The reason for that is pretty simple, unlike stripe-cli, test webhooks send bogus Ids...

@bryanburgers I am not 100% sure this is a proper fix as I didn’t dig too deep in the code and the lack of documentation makes it hard to understand...

> Logic def. sounds good, but not sure what is going on in the tests, have to look later. Just removed the redundant calls to pre/post. Because all of this...