Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix logo display error #38

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Burstcoin Pool中文帮助.pdf
Binary file not shown.
156 changes: 78 additions & 78 deletions pool.properties
Original file line number Diff line number Diff line change
@@ -1,78 +1,78 @@
# Properties for Burstcoin Pool

# The port to run the server on
serverPort = 80

# The address of the node to connect to.
# Make sure this uses the correct port
# for HTTP / gRPC, depending on which is
# selected.
nodeAddresses = grpc://localhost:6878; http://localhost:6876

# The name of the pool
poolName = My Awesome Pool

# The passphrase of the pool account
passphrase = mysecretpassphrase

# Database connection settings. Replace "pooldb" with your database name.
dbUrl=jdbc:mariadb://localhost:3306/pooldb
dbUsername=root
dbPassword=

# Deadlines of the last nAvg blocks will be used to estimate capacity
nAvg = 360

# Minimum number of deadlines needed to get a share and be listed as a miner
nMin = 10

# Minimum block length in seconds for it to count towards miner estimated capacities
tMin = 30

# Maximum deadline accepted by the pool
maxDeadline = 1000000000

# The number of blocks behind the latest to process and, if necessary, reward.
# A higher value means more delayed rewards, a lower value means higher likelihood of problems due to
# short lived network forks.
processLag = 10

# Recipient of pool fees
feeRecipient=BURST-W5YR-ZZQC-KUBJ-G78KB
# Percentage of each block reward taken by pool (1 = 100%)
poolFeePercentage = 0.01
# Percentage of each block reward (minus pool fees) taken by forger eg. 0 would be a 0-100 pool, 1 would be a 100-0 pool.
winnerRewardPercentage = 0

# Minimum number of Burst to payout by default.
# Changing this will only affect new miners
# This is also the minimum payout for the fee recipient
defaultMinimumPayout = 100
# Minimum number of Burst a miner can set their minimum payout to
minimumMinimumPayout = 50
# Minimum number of miners paid per transaction, including fee recipient.
# Pool pays out if every miner has reached minimum payout or if more than
# this many miners have reached minimum payout
minPayoutsPerTransaction = 10
# Transaction fee for payouts. Will be deducted evenly from miners that are being paid.
transactionFee = 1
# Number of times to retry making payout transaction if failed
payoutRetryCount = 3
# Number of times to retry submitting nonce if failed
submitNonceRetryCount = 3

# The icon files for the website
site.icon.ico = icon.ico
site.icon.png = icon.png

# The public node that the site will link to
site.nodeAddress = https://wallet.burst-alliance.org:8125/index.html

# The software packages URL that the site will link to
site.softwarePackagesAddress = https://github.com/burst-apps-team

# The discord URL that the site will link to
site.discord = https://discord.gg/ms6eagX

# The title, as displayed on the site
site.title = Burst Pool
# Properties for Burstcoin Pool
# The port to run the server on
serverPort = 80
# The address of the node to connect to.
# Make sure this uses the correct port
# for HTTP / gRPC, depending on which is
# selected.<--rpc端口设置 默认测试网-api v1 api v2>
nodeAddresses = grpc://localhost:6878; http://localhost:6876
# The name of the pool
poolName = My Awesome Pool
# The passphrase of the pool account <--!矿池账户密码-->
passphrase = mysecretpassphrase
# Database connection settings. Replace "pooldb" with your database name.<--!池数据库连接账户密码>
dbUrl=jdbc:mariadb://localhost:3306/pooldb
dbUsername=root
dbPassword=
# Deadlines of the last nAvg blocks will be used to estimate capacity<--!容量确认轮-->
nAvg = 360
# Minimum number of deadlines needed to get a share and be listed as a miner<--!矿工确认区块-->
nMin = 1
# Minimum block length in seconds for it to count towards miner estimated capacities<--!最小统计秒区块-->
tMin = 30
# Maximum deadline accepted by the pool<--!池接收DL上限-->
maxDeadline = 1000000000
# The number of blocks behind the latest to process and, if necessary, reward.
# A higher value means more delayed rewards, a lower value means higher likelihood of problems due to
# short lived network forks.<--区块流程滞后-->
processLag = 10
# Recipient of pool fees<--池收费账户设置,可用数字ID-->
feeRecipient=BURST-W5YR-ZZQC-KUBJ-G78KB
# Percentage of each block reward taken by pool (1 = 100%)<--池费率-->
poolFeePercentage = 0.01
# Percentage of each block reward (minus pool fees) taken by forger eg. 0 would be a 0-100 pool, 1 would be a 100-0 pool.<--默认0-100池-->
winnerRewardPercentage = 0
# Minimum number of Burst to payout by default.
# Changing this will only affect new miners
# This is also the minimum payout for the fee recipient
defaultMinimumPayout = 100
# Minimum number of Burst a miner can set their minimum payout to
minimumMinimumPayout = 50
# Minimum number of miners paid per transaction, including fee recipient.
# Pool pays out if every miner has reached minimum payout or if more than
# this many miners have reached minimum payout
minPayoutsPerTransaction = 10
# Transaction fee for payouts. Will be deducted evenly from miners that are being paid.
transactionFee = 1
# Number of times to retry making payout transaction if failed
payoutRetryCount = 3
# Number of times to retry submitting nonce if failed
submitNonceRetryCount = 3
# The icon files for the website
site.icon.ico = icon.ico
site.icon.png = icon.png
# The public node that the site will link to<--在线钱包地址设置-->
site.nodeAddress = https://wallet.burst-alliance.org:8125/index.html
# The software packages URL that the site will link to<--默认挖掘开采工具下载地址设置-->
site.softwarePackagesAddress = https://github.com/burst-apps-team
# The discord URL that the site will link to<--对应矿池绑定页面设置-->
site.discord = https://discord.gg/ms6eagX
# The title, as displayed on the site<--池名称设置-->
site.title = Burst Pool
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = 'burstcoin-pool'
rootProject.name = 'burstpool-bate-1'
Binary file added src/main/resources/html/img/burst_B_blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/main/resources/html/img/discord.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/html/img/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/html/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading