From 1cbe9bf2770e3e86f92efda72fb9876c78007441 Mon Sep 17 00:00:00 2001 From: Tim Williams Date: Sun, 12 Aug 2018 09:22:59 -0400 Subject: [PATCH] rm testing sleeps --- shyftRingWalletConn/app.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/shyftRingWalletConn/app.go b/shyftRingWalletConn/app.go index 65242c3eca..4f0863b68e 100644 --- a/shyftRingWalletConn/app.go +++ b/shyftRingWalletConn/app.go @@ -14,7 +14,6 @@ import ( "github.com/ShyftNetwork/go-empyrean/ethclient" "github.com/ShyftNetwork/go-empyrean/common" "context" - "time" "sync" "github.com/ShyftNetwork/go-empyrean/core/types" "github.com/ShyftNetwork/go-empyrean/rlp" @@ -236,14 +235,10 @@ func sendRingSignedMsg(conn net.Conn){ fmt.Println(new_sig) fmt.Println([]byte("\n")) conn.Write([]byte("Broadcasting Message")) - time.Sleep(1000 * time.Millisecond) conn.Write([]byte("\n")) - time.Sleep(3000 * time.Millisecond) conn.Write([]byte(f_msg)) - time.Sleep(1000 * time.Millisecond) conn.Write([]byte("\n")) conn.Write(new_sig) - time.Sleep(1000 * time.Millisecond) conn.Write([]byte("\n")) mutex.Unlock() } \ No newline at end of file