Timofey Solonin

Results 34 comments of Timofey Solonin

I was wondering why I was getting corrupted and empty files all the time and this was the issue. I [was expecting](https://github.com/vapor/vapor/blob/c7b4d3f9705645d184a464e191cdb49ca3a48de9/Sources/Vapor/Request/Request%2BBody.swift#L31-L32) `drain` to await on the future that I...

I don't think `Create directory` is the only step that is causing the problem. The legacy build system seemed to take a single target and carry out all of its...

@rockfridrich lets make it more like `ethereum: Ethereum -> blocks: Blocks -> latest: Block -> number/hash: Int/String`

@rockfridrich could you elaborate on what does [this](https://solidity.readthedocs.io/en/develop/abi-spec.html#formal-specification-of-the-encoding) mean? > The data of a variable or array element is not interleaved with other data and it is relocatable, i.e. it...

~~For future reference: `struct`s are encoded as tuples.~~ update: this is not currently possible.

`enum` is not a part of ABI as of now and is converted to the minimally needed capacity `uint`

@bashalex [specification](https://solidity.readthedocs.io/en/develop/abi-spec.html#formal-specification-of-the-encoding) on tuple (`X`) encoding says: > enc(X) = head(X(1)) ... head(X(k-1)) tail(X(0)) ... tail(X(k-1)) There is `tail(X(0))` but there is no `head(X(0))`. Where does the `head(X(0))` go? Should...

@bashalex there is a similar issue with specification on variable-length array vs fixed-length array. For fixed-length it is: > enc(X) = enc((X[0], ..., X[k-1])) and for variable-length it is: >...

As of now the following constraints also apply: 1. Structures cannot be an external dependency 2. There is no such type as tuple of tuples.

@rockfridrich can you find someone to design a logo for the project?