Skip to content

Commit

Permalink
clients/besu: update config to address rpc and send-legacy-transactio…
Browse files Browse the repository at this point in the history
…n rpc-compat failure (#661)


Signed-off-by: mark-terry <mark.terry@consensys.net>
Co-authored-by: Felix Lange <fjl@twurst.com>
  • Loading branch information
mark-terry and fjl authored Jan 3, 2023
1 parent a3428ee commit 8071a3e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
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

0 comments on commit 8071a3e

Please sign in to comment.