mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 17:37:25 +00:00
add blake2s to default algos..
+ uis algos list change
This commit is contained in:
parent
e48a0cd335
commit
266f78431a
3 changed files with 3 additions and 1 deletions
1
rc.local
1
rc.local
|
@ -38,6 +38,7 @@ screen -dmS lyra2 $STRATUM_DIR/run.sh lyra2
|
|||
screen -dmS lyra2v2 $STRATUM_DIR/run.sh lyra2v2
|
||||
|
||||
screen -dmS blake $STRATUM_DIR/run.sh blake
|
||||
screen -dmS blake2s $STRATUM_DIR/run.sh blake2s
|
||||
screen -dmS vanilla $STRATUM_DIR/run.sh vanilla # blake 8
|
||||
screen -dmS decred $STRATUM_DIR/run.sh decred # blake 14
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ function yaamp_get_algos()
|
|||
'scryptn',
|
||||
'argon2',
|
||||
'blake',
|
||||
'blake2s',
|
||||
'decred',
|
||||
'keccak',
|
||||
'luffa',
|
||||
|
|
|
@ -169,7 +169,7 @@ function versionToAlgo($coin, $version)
|
|||
0=>'sha256', 1=>'scrypt', 2=>'groestl', 3=>'x11', 4=>'blake'
|
||||
);
|
||||
$algos['UIS'] = array(
|
||||
0=>'blake256', 1=>'skein', 2=>'qubit', 3=>'yescrypt', 4=>'x11'
|
||||
0=>'lyra2v2', 1=>'skein', 2=>'qubit', 3=>'yescrypt', 4=>'x11'
|
||||
);
|
||||
|
||||
$symbol = $coin->symbol;
|
||||
|
|
Loading…
Add table
Reference in a new issue