Skip to content

Commit

Permalink
double fee tolerance because fees went up
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Oct 25, 2024
1 parent 1f6013f commit 7955de6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cli/demo_shielding_unshielding.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ echo ""

# the parentchain token is 12 decimal
UNIT=$(( 10 ** 12 ))
FEE_TOLERANCE=$((10 ** 11))
FEE_TOLERANCE=$((2 * 10 ** 11))

# make these amounts greater than ED
AMOUNT_SHIELD=$(( 6 * UNIT ))
Expand Down
2 changes: 1 addition & 1 deletion cli/demo_shielding_unshielding_using_shard_vault.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ echo ""

# the parentchain token is 12 decimal
UNIT=$(( 10 ** 12 ))
FEE_TOLERANCE=$((10 ** 11))
FEE_TOLERANCE=$((2 * 10 ** 11))

# make these amounts greater than ED
AMOUNT_SHIELD=$(( 6 * UNIT ))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ echo ""

# the parentchain token is 12 decimal
UNIT=$(( 10 ** 12 ))
FEE_TOLERANCE=$((10 ** 11))
FEE_TOLERANCE=$((2 * 10 ** 11))

# make these amounts greater than ED
AMOUNT_SHIELD=$(( 6 * UNIT ))
Expand Down
2 changes: 1 addition & 1 deletion cli/demo_sidechain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ echo "Using trusted-worker 2 uri ${WORKER_2_URL}:${WORKER_2_PORT}"

# the parentchain token is 12 decimal
UNIT=$(( 10 ** 12 ))
FEE_TOLERANCE=$((10 ** 11))
FEE_TOLERANCE=$((2 * 10 ** 11))

INITIALFUNDS=$((5 * UNIT))
AMOUNTTRANSFER=$((2 * UNIT))
Expand Down
2 changes: 1 addition & 1 deletion cli/test_auto_shielding_with_transfer_bob.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ echo ""

# the parentchain token is 12 decimal
UNIT=$(( 10 ** 12 ))
FEE_TOLERANCE=$((10 ** 11))
FEE_TOLERANCE=$((2 * 10 ** 11))

# make these amounts greater than ED
AMOUNT_SHIELD=$(( 6 * UNIT ))
Expand Down
2 changes: 1 addition & 1 deletion cli/test_shield_on_target_nodes_with_transfer_to_alice.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ echo ""

# the parentchain token is 12 decimal
UNIT=$(( 10 ** 12 ))
FEE_TOLERANCE=$((10 ** 11))
FEE_TOLERANCE=$((2 * 10 ** 11))

# make these amounts greater than ED
AMOUNT_SHIELD=$(( 6 * UNIT ))
Expand Down

0 comments on commit 7955de6

Please sign in to comment.