diff options
author | vim88 <vim88vim88@gmail.com> | 2018-12-02 20:00:42 +0800 |
---|---|---|
committer | Martin Holst Swende <martin@swende.se> | 2018-12-02 20:00:42 +0800 |
commit | efe5886877d3f171fae5adfd1e5f1c585e16946b (patch) | |
tree | a176f0c3e36e8b3c0fa4f5ff793267fd3c88182e | |
parent | 085f89172f0af9d9685d228ad163d639041f1217 (diff) | |
download | dexon-efe5886877d3f171fae5adfd1e5f1c585e16946b.tar.gz dexon-efe5886877d3f171fae5adfd1e5f1c585e16946b.tar.zst dexon-efe5886877d3f171fae5adfd1e5f1c585e16946b.zip |
signer/core: Fixes typo of method name in comment. (#18222)
-rw-r--r-- | signer/core/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/signer/core/api.go b/signer/core/api.go index 2b96cdb5f..e9a335785 100644 --- a/signer/core/api.go +++ b/signer/core/api.go @@ -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 // information 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 OnInputRequired(info UserInputRequest) (UserInputResponse, error) } |