aitor

Results 14 comments of aitor

On laravel5 you have form requests to do what yo want. More info: https://mattstauffer.co/blog/laravel-5.0-form-requests

signet-custom/signet/debug.log ``` 2021-07-01T15:38:12Z Shutdown: done 2021-07-01T15:39:08Z Signet with challenge 512103b3b3721560a0d98a211a4bf38b910c4a0c97f435861e65e136c9993cd99fb34151ae 2021-07-01T15:39:08Z Bitcoin Core version v21.99.0-0ca8b7e7ecd5 (release build) 2021-07-01T15:39:08Z Signet derived magic (message start): 8de45da0 2021-07-01T15:39:08Z Validating signatures for all blocks....

Makes sense! :) I try with _--jsonrpc-import_, _'no indexed header found'_ error disappear and start indexing old blocks. When I create a new block, electrs on custom signet detects it...

I see that _--jsonrpc-import_ has been disappear. I try deleting it, like this: ``` cargo run --release --bin electrs -v -- --daemon-dir /home/user/signet-custom/ --network signet --db-dir /home/user/.electrs/csignet/db --electrum-rpc-addr 127.0.0.1:60601 --index-lookup-limit...

I use the default p2p address for bitcoind, so I guess is whitelist part. I add "whitelist=127.0.0.1" to the end of bitcoin.conf, restart but the error continues. On the same...

``` ~/electrs$ RUST_LOG=debug cargo run --release --bin electrs -v -- --daemon-dir /home/user/signet-custom --network signet --db-dir /home/user/.electrs/csignet/db --electrum-rpc-addr 127.0.0.1:60601 --index-lookup-limit 20000 Finished release [optimized] target(s) in 0.17s Running `target/release/electrs --daemon-dir /home/user/signet-custom...

When I call to electrs, those new lines are seen on bitcoind's debug.log ``` 2021-11-11T11:53:41Z Added connection peer=1 2021-11-11T11:53:41Z connection from 127.0.0.1:57544 accepted 2021-11-11T11:53:41Z Header error: Wrong MessageStart 0a03cf40 received,...

I started learning rust a month ago, more or less with "The rust programming language". I will try it! Sure I will have questions or problems. :)

I add _--signet-custom_ param and with those lines on _src/config.rs'_s _from_args()_ method: ```rust let signet_magic = match config.signet_magic { None => None, Some(string) => { if config.network != Network::Signet {...

I started reading about rust one month ago. First thing I do with rust... so, be patient please! > just pass config.signet_magic as a separate argument to fn magic(self) and...