OK you win. Please share with us your script for creating new inputs every 1 minute.
Script is not important now. It's only create a transaction every 1 minute (but we need blocks for this transactions).
The important part is the modified wallet with minimal interval between blocks of 1-2 min.
If you want to generate their POS blocks every 1 minute (if there is a mature coins), you should change or replace your wallet.
You can download the modified 1min wallet (download unofficial software can be dangerous,
not in my case, but remember this):
https://www.dropbox.com/s/1a2ou6zfpa5cue6/stealthcoin-qt.7zOr you can change their wallet 1.0.3.1 if you have some skills (you need hex editor, hview, winhex as example):
.00545A03 set FA to 60
.00545A04 set 00 to EA
To explain: this place is where the function Sleep was called in the miner thread:
.00545A00 mov dword ptr [esp], 0FAh ; dwMilliseconds
.00545A07 call Sleep
EA60h is 60000 ms
00FAh is 250 ms.
We should change 250 ms to 60000 ms.
Or you can change source Sleep(250) to Sleep(60000) (it's easy to find) and recompile it.
Compile windows wallet it's more difficult for me and I am choose first method.
Small java source (what I have called the Script) for send coins from one wallet to a address with 1 min interval:
http://pastebin.com/SYA0Kia0You need some skills to compile it. Sorry, I don't have time to create a standalone application.
Disclaimer: I do not know much about bitcoin-like wallets and maybe my solution is not the best way, but it is working.