Skip to content

Commit 568f79d

Browse files
authored
fix: cast fund users with gas price (#1290)
1 parent 6097ff5 commit 568f79d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

scripts/fund_operator_devnet.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ cast send --from $sender_address \
2323
--value $amount_in_eth \
2424
--private-key $sender_private_key \
2525
--rpc-url "http://localhost:8545" \
26-
"$recipient_address"
26+
"$recipient_address" \
27+
--gas-price $(cast gas-price --rpc-url "http://localhost:8545")

scripts/user_fund_payment_service_devnet.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ cast send --from $USER_ADDRESS \
1919
--value $amount_in_eth \
2020
--private-key $USER_PRIVATE_KEY \
2121
--rpc-url "http://localhost:8545" \
22-
"$batcher_payment_service_address"
22+
"$batcher_payment_service_address" \
23+
--gas-price $(cast gas-price --rpc-url "http://localhost:8545")

0 commit comments

Comments
 (0)