Richard McDaniel
Richard McDaniel
Here's an example of how to make this work. In your setUp() do this... ``` $this->realQueue = Queue::getFacadeRoot(); Queue::fake(); ``` Then later in a test you can do this... ```...
@lukechampine I will volunteer to work on this. I am building a web wallet and need this feature.
That looks a lot how Electrum works. The first hurdle is being able to have a public master key that can be used to generate addresses and build transactions. You...
@mtlynch @lukechampine After doing some digging, I'm not sure having a watch-only wallet is possible without changing how the wallet uses the seed to generate the keys. Maybe someone that...
@tlightsky That part is easier. I am working on it as well in my spare time. It's just a matter of adding the ability to specify outputs for the transaction...
Okay, I have gotten pretty far on the code spikes I've done and I am ready to make a design. I am thinking that I could create a new module...
Use Laravel. 😂
https://github.com/laravel-workflow/laravel-workflow might be an option if you are using Laravel
@zsinryu Can you test this fix when you get a chance? I have tested it myself and it seems to fix the issue.
@rommeA I did not roll back that feature. The problem is with the database migration that creates the jobs table. `php artisan queue:table` It seems that this table is using...