Conrado Quilles Gomes

Results 11 comments of Conrado Quilles Gomes

Hey! If you create that transaction and the B address is wrong, nothing can be done. This is why you need to 100% sure that the B address is right...

@demenvil @kwccoin IMO it's hard to implement that kind of verification if the generation of the address is based on a password. The resulting address could be anything generated anywhere,...

I think it would need a lot of improvements and a deeper study. I comment some points that I know that needs to be improved throughout the source-code.

Hey. Nice work man. I'll look into it. Give me some days, please. Have you done your changes over the branch v1.0.0 or over the master? Best

I think you have created a new repository instead of a fork. I can't merge it that way. It's even hard to compare, hehe. I also need to think if...

Hi, The mining time is not fixed and it depends on the formula specified in the [config](https://github.com/conradoqg/naivecoin/blob/master/lib/config.js#:~:text=pow%3A%20%7B-,getDifficulty,-%3A%20(blocks%2C%20index)%20%3D%3E%20%7B) file. That API call ends up running this [function](https://github.com/conradoqg/naivecoin/blob/master/lib/miner/index.js#:~:text=static-,proveWorkFor(,-jsonBlock%2C%20difficulty)%20%7B) which actually does the...

I forgot to copy sample.html to the build directory. Please do it for me. Thank you.

Got it: ```js import * as Plotly from 'plotly.js'; import * as csDictionary from 'plotly.js/lib/locales/pt-br.js'; import createPlotlyComponent from 'react-plotly.js/factory'; const Plot = createPlotlyComponent(Plotly); Plotly.register(csDictionary); ``` Cheers

This is my solution: ```makefile templates_dir = ./templates spec_dir = ./spec spec = out.yml flags = --freeze templates = $(wildcard $(templates_dir)/*.template.yml) .PHONY: all all: compile .PHONY: compile compile: $(spec_dir) $(spec_dir)/.env...

This will resolve the 'default' validation: ``` javascript ValidatorContext.prototype.validateObjectRequiredProperties = function validateObjectRequiredProperties(data, schema) { if (schema.required !== undefined) { for (var i = 0; i < schema.required.length; i++) { var...