Skip to content

Commit

Permalink
fix: add gas-price for polycli ulxly
Browse files Browse the repository at this point in the history
Signed-off-by: Ji Hwan <[email protected]>
  • Loading branch information
jhkimqd committed Jan 16, 2025
1 parent 09202f2 commit 7a45ce0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,8 @@ jobs:
--destination-address 0xE34aaF64b29273B7D567FCFc40544c014EEe9970 \
--deposit-network 0 \
--rpc-url $destNetworkURL \
--bridge-service-url $bridgeURL
--bridge-service-url $bridgeURL \
--gas-price $(cast gas-price --rpc-url $destNetworkURL)
if [[ $ret_code -eq 0 ]]; then
echo "[$(date '+%Y-%m-%d %H:%M:%S')] ✅ Exiting... Claim Transaction successfuly sent!"
exit 0
Expand All @@ -542,7 +543,8 @@ jobs:
--bridge-address 0xd8886e9D827218a02B8C04323b5550f2F36BC8d5 \
--destination-network 1 \
--force-update-root=true \
--destination-address 0xE34aaF64b29273B7D567FCFc40544c014EEe9970
--destination-address 0xE34aaF64b29273B7D567FCFc40544c014EEe9970 \
--gas-price $(cast gas-price --rpc-url $originNetworkURL)
if [[ $ret_code -eq 0 ]]; then
echo "[$(date '+%Y-%m-%d %H:%M:%S')] ✅ Exiting... Deposit Transaction successfuly sent!"
else
Expand All @@ -562,7 +564,8 @@ jobs:
--destination-address 0xE34aaF64b29273B7D567FCFc40544c014EEe9970 \
--deposit-network 3 \
--rpc-url $destNetworkURL \
--bridge-service-url $bridgeURL
--bridge-service-url $bridgeURL \
--gas-price $(cast gas-price --rpc-url $destNetworkURL)
if [[ $ret_code -eq 0 ]]; then
echo "[$(date '+%Y-%m-%d %H:%M:%S')] ✅ Exiting... Claim Transaction successfuly sent!"
exit 0
Expand Down

0 comments on commit 7a45ce0

Please sign in to comment.