Mart Roosmaa

Results 7 issues of Mart Roosmaa

In the README the _assets?_ task definition is a bit wrong. ``` p.Task("assets?", nil, func(c *do.Context) { // The "?" tells Godo to run this task ONLY ONCE regardless of...

The [/transactions/multisignatures/get?id=3645650275543117289](https://twallet.rise.vision/api/transactions/multisignatures/get?id=3645650275543117289) endpoint returns `senderPublicKey` and `signature` fields in some object notation, where as it should return hex encoded strings. ```json { "success": true, "transaction": { "type": 4, "id": "3645650275543117289",...

[/transactions/multisignatures?senderPublicKey=09c16051ac46ae880dd08bcf030bd089d3cd3a03ea06ca8692b51dba53ad3cf7](https://twallet.rise.vision/api/transactions/multisignatures?senderPublicKey=09c16051ac46ae880dd08bcf030bd089d3cd3a03ea06ca8692b51dba53ad3cf7) endpoint correctly returns the multisignature transaction: ```json { "success": true, "count": 1, "transactions": [ { "type": 4, "id": "3645650275543117289", "timestamp": 79394894, "senderId": "5748963084999911943R", "senderPublicKey": "09c16051ac46ae880dd08bcf030bd089d3cd3a03ea06ca8692b51dba53ad3cf7", "fee": 500000000, "signature": "8b8943fb4cea13fdd08362f21fefc02ee9219a87b452cf313d1369951142c203d45dc8953878e6dd6aef7cd945314bb664e77ef8537ff20ad55afd60df9cfc08",...

I was looking into signing payment transactions on the client side and kind of went down the rabbit hole to also look into the binary protocol in more depth. If...

There doesn't seem to be a good way to upgrade between major versions of postgres. When sharing the volume with a new container with a newer version of postgres it...

question

In platform_strategy.py: ```python def trim_message(self, message): import sys trim_length = SCARFACE_DEFAULT_MESSAGE_TRIM_LENGTH if hasattr(settings, 'SCARFACE_MESSAGE_TRIM_LENGTH'): trim_length = settings.SCARFACE_MESSAGE_TRIM_LENGTH if sys.getsizeof(message) > trim_length: while sys.getsizeof(message) > trim_length: message = message[:-3] message +=...

`futures-rs` crate has deprecated the `.boxed()` extension. This pull request updates the `Service` trait documentation examples to use `Box::new(..)` instead of the deprecated method.