Dmitry Holodov
Dmitry Holodov
Right now when the library returns "closed" errors (which many users need to test against), it is not returning `net.ErrClosed` like the standard net libraries since Go 1.16. Instead of...
https://github.com/amrayn/easyloggingpp/blob/8489989bb26c6371df103f6cbced3fbee1bc3c2f/src/easylogging%2B%2B.cc#L623 That line is passing uninitialized memory to `safeDelete` and if it is non-zero, it is calling `delete`.
## Unit test fixes The unit tests, at least under go 1.16, were failing: > panic: x509: certificate relies on legacy Common Name field, use SANs or temporarily enable Common...
Developers need to test their code and `generateblocks` is quite handy. I've used it a lot, but still could use the guide entry so I could finally learn what the...
I thought the `ring_size` in Monero can no longer be changed. Does it still belong as an input to `transfer` in the RPC documentation? https://github.com/monero-project/monero-site/blame/28cfcdb38e735f5c35b83c067d8410ff4dc81ad4/resources/developer-guides/wallet-rpc.md#L659
The `get_balance` wallet RPC method has a `blocks_to_unlock` field (and possibly others) that are not documented here: https://github.com/monero-project/monero-site/blame/28cfcdb38e735f5c35b83c067d8410ff4dc81ad4/resources/developer-guides/wallet-rpc.md#L173-L178 Implementation reference: https://github.com/monero-project/monero/blob/v0.18.1.0/src/wallet/wallet_rpc_server_commands_defs.h#L108-L109
Can you add support for detecting SGX features to the library?
When updating our code to use embedded `monero-wallet-rpc` instances (https://github.com/AthanorLabs/atomic-swap/pull/192), I wasn't familiar enough with `swaptester` to update and make sure it was working correctly. This ticket is for the...
Our current method of setting up logging across all of our own packages is fragile and needs maintenance when we add/change package names: https://github.com/AthanorLabs/atomic-swap/blob/3b4ae0224080b13046cf39ae059dc35f090264c4/cmd/swapd/main.go#L235-L241 An attempt was made to set...
Our `make lint` and `make format` targets cover our golang and bash code (or will shortly). We should expand the tooling to cover the web sources as well.