From e1b37d22f5f44e603658c0162dba1cb21f36ca96 Mon Sep 17 00:00:00 2001 From: lumtis Date: Mon, 29 Jan 2024 16:01:09 -0800 Subject: [PATCH] fix zeta withdraw --- .../orchestrator/smoketest/smoketests/test_zeta_withdraw.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/contrib/localnet/orchestrator/smoketest/smoketests/test_zeta_withdraw.go b/contrib/localnet/orchestrator/smoketest/smoketests/test_zeta_withdraw.go index d1aef30aec..e5521fd158 100644 --- a/contrib/localnet/orchestrator/smoketest/smoketests/test_zeta_withdraw.go +++ b/contrib/localnet/orchestrator/smoketest/smoketests/test_zeta_withdraw.go @@ -14,10 +14,7 @@ import ( ) func TestZetaWithdraw(sm *runner.SmokeTestRunner) { - //amount := big.NewInt(0).Mul(big.NewInt(1e18), big.NewInt(10)) // 10 Zeta - - // 0.1 Zeta - amount := big.NewInt(1e17) + amount := big.NewInt(0).Mul(big.NewInt(1e18), big.NewInt(10)) // 10 Zeta sm.ZevmAuth.Value = amount tx, err := sm.WZeta.Deposit(sm.ZevmAuth)