signer/core: Fixes typo of method name in comment.

This commit is contained in:
vim88 2018-12-01 14:30:14 +02:00
parent 085f89172f
commit a4e6169fde

View file

@ -82,7 +82,7 @@ type SignerUI interface {
// OnSignerStartup is invoked when the signer boots, and tells the UI info about external API location and version // OnSignerStartup is invoked when the signer boots, and tells the UI info about external API location and version
// information // information
OnSignerStartup(info StartupInfo) OnSignerStartup(info StartupInfo)
// OnInputRequried is invoked when clef requires user input, for example master password or // OnInputRequired is invoked when clef requires user input, for example master password or
// pin-code for unlocking hardware wallets // pin-code for unlocking hardware wallets
OnInputRequired(info UserInputRequest) (UserInputResponse, error) OnInputRequired(info UserInputRequest) (UserInputResponse, error)
} }