Permalink
Browse files

Payments On New Block Rewrite

Completely Rewrite the payment procedure to go off detecting dedecting
the winner rather than a change in balance.
  • Loading branch information...
1 parent f5f86d5 commit c192e57a877dc4f4b96b7896bcb29ef5491aa7d5 SOELexicon committed Nov 26, 2016
Showing with 287 additions and 121 deletions.
  1. +6 −0 .gitignore
  2. +2 −0 README.md
  3. +4 −4 burst-pool-config.js
  4. +247 −116 burst-pool-payment.js
  5. +4 −0 burst-pool-protocol.js
  6. +24 −1 burst-pool-session.js
View
@@ -0,0 +1,6 @@
+.idea/
+node_modules/
+pool-payments.json
+pool-session.json
+pool-share.json
+*.exe
View
@@ -2,6 +2,8 @@ burst-pool
==========
Lex Pool for Burstcoin
+Official Pool URL: http://burst.lexitoshi.uk/#
+Recipient: BURST-F3XD-Y4M5-SN8C-G9FFJ
please donate for development to
View
@@ -13,14 +13,15 @@ module.exports = {
walletIndex: 0,
blockMature : 1,
txFeePercent : 0.0005,
+ devFee : true,
poolFee : 0.0015,
poolDiff : 1000000,
poolDiffCurve : 0.75,
poolPort : 8124,
poolPvtKey : '<pool private key>',
- poolPublicRS : '<pool public key RS format>',
- poolPublic : '<pool public key numeric format',
- poolFeePaymentAddr : '<pool fee account numeric format>',
+ poolPublicRS : 'BURST-F3XD-Y4M5-SN8C-G9FFJ',
+ poolPublic : '16732464642587527083',
+ poolFeePaymentAddr : '17572168194578653714',
defaultPaymentDeadline : 1440,
poolFeePaymentTxFeeNQT : 100000000,
httpPort : 80,
@@ -30,7 +31,6 @@ module.exports = {
clearingMinPayout : 2.0,
lastSessionFile : 'last-session.json',
cumulativeFundReduction : 0.5,
- nextBlockFundSaving : 0.5,
logWebsocketToConsole : false,
maxRoundCount : 97,
sharePenalty : 0.001,
Oops, something went wrong.

0 comments on commit c192e57

Please sign in to comment.