From c5b2ab37e0bbeacefa8ccb7dbf091278492650b6 Mon Sep 17 00:00:00 2001 From: chadlagore Date: Tue, 25 Jul 2017 18:44:04 -0700 Subject: [PATCH] remove responder --- app/app.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/app.go b/app/app.go index 2649e6f..ac47ea9 100644 --- a/app/app.go +++ b/app/app.go @@ -36,13 +36,6 @@ type App struct { Pool *pool.Pool } -// Responder is used to handle requests who require a response. -type Responder interface { - Send(ok bool) - Lock() - Unlock() -} - // BlockWorkQueue is a queue of blocks to process. var blockQueue = make(chan *blockchain.Block, blockQueueSize)