blackmennewstyle / miningcore

Miningcore is a high-performance Mining Pool Software for Linux and Windows.
MIT License
17 stars 35 forks source link

Litecoin.conf #47

Closed shanhashcah closed 7 months ago

shanhashcah commented 7 months ago

Hi @blackmennewstyle Sir:

            Thanks for your support!

In litecoin.conf file there is a portion called daemons which is used to connect the node like below

"daemons": [ { "host": "127.0.0.1", "port": 9332, "user": "user", "password": "password" } ] here user & password is the rpc user & password . But Sir in my litecoin node password is set for fund transfer. So if pool wants to send LTC reward from pool wallet to miner wallet, pool needs that password. So how can we set that node password in litecoin.conf file?

Thanks in advance!

shanhashcah commented 7 months ago

@blackmennewstyle Sir:

Any help..

blackmennewstyle commented 7 months ago

Sorry for the late reply,

Everything is in the code - (https://github.com/blackmennewstyle/miningcore/blob/dev/src/Miningcore/Blockchain/Bitcoin/Configuration/BitcoinPoolPaymentProcessingConfigExtra.cs). You should modify that section:

"paymentProcessing": {
        "walletPassword": "password",
        "enabled": true,
        "minimumPayment": 0.5,
        "payoutScheme": "PPLNS",
        "payoutSchemeConfig": {
          "factor": 2.0
        }
      }
shanhashcah commented 7 months ago

Hi @blackmennewstyle Sir.. many Thanks four support.