From b89cabfb291ed60d64679f44626c13b0c4481af2 Mon Sep 17 00:00:00 2001 From: kac- <6b6163@gmail.com> Date: Sun, 5 Oct 2014 10:19:29 +0200 Subject: [PATCH] comment:script.go: ScriptDB->KeyDB --- script.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.go b/script.go index e77a70d5..1da43589 100644 --- a/script.go +++ b/script.go @@ -1423,7 +1423,7 @@ type KeyDB interface { GetKey(btcutil.Address) (*ecdsa.PrivateKey, bool, error) } -// KeyClosure implements ScriptDB with a closure +// KeyClosure implements KeyDB with a closure type KeyClosure func(btcutil.Address) (*ecdsa.PrivateKey, bool, error) // GetKey implements KeyDB by returning the result of calling the closure