diff --git a/console/bridge.go b/console/bridge.go
index 995448afb375bc42db24d72aa0bffbb29d6d1384..9303496b287a35ab7915fba088e60afba91221a7 100644
--- a/console/bridge.go
+++ b/console/bridge.go
@@ -306,9 +306,9 @@ func (b *bridge) Sign(call jsre.Call) (goja.Value, error) {
 	}
 
 	// Send the request to the backend and return
-	sign, callable := goja.AssertFunction(getJeth(call.VM).Get("unlockAccount"))
+	sign, callable := goja.AssertFunction(getJeth(call.VM).Get("sign"))
 	if !callable {
-		return nil, fmt.Errorf("jeth.unlockAccount is not callable")
+		return nil, fmt.Errorf("jeth.sign is not callable")
 	}
 	return sign(goja.Null(), message, account, passwd)
 }