Skip to content
Merged
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
5 changes: 4 additions & 1 deletion clients/besu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ RUN chmod +x /hive-bin/enode.sh

RUN ./bin/besu --version > /version.txt

# Export the usual networking ports to allow outside access to the node
# Expose JVM debugger port.
EXPOSE 5005

# Expose the usual networking ports to allow outside access to the node.
EXPOSE 8545 8546 8551 30303 30303/udp

ENTRYPOINT ["/opt/besu/bin/besu-hive.sh"]
2 changes: 1 addition & 1 deletion clients/besu/besu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ fi
if [ "$HIVE_MINER_EXTRA" != "" ]; then
FLAGS="$FLAGS --miner-extra-data=$HIVE_MINER_EXTRA"
fi
FLAGS="$FLAGS --min-gas-price=16 --tx-pool-price-bump=0"
FLAGS="$FLAGS --min-gas-price=1 --tx-pool-price-bump=0 --tx-pool-limit-by-account-percentage=1"

# Configure peer-to-peer networking.
if [ "$HIVE_BOOTNODE" != "" ]; then
Expand Down