リモート署名者が期待どおりに機能しているかどうかを確認するにはどうすればよいですか?
3 回答
- 投票
-
- 2019-04-03
私はこれを行うことを好みます...これは、
--dry-run
フラグを追加することを忘れることなくデータに署名する直接の要求です.tezos-client sign bytes 0x03 for <tz alias or tz address>
ここで
0x03
は、古い乱数です.ここに任意の16進値を入力できます.リモート署名者が機能している場合は、次のようなメッセージが返されます.Signature: sigPab0p1MdqojAaNTvASSvLo4ULEujfNFurF71EdoruABoPLLwmSxEDJf4NfQx8nJi3ncjfMEJbiWojTDXDUB8wNF5fgFIbA
I just prefer to do this...it's a direct request to sign data without any possibility of forgetting to add the
--dry-run
flag.tezos-client sign bytes 0x03 for <tz alias or tz address>
Here
0x03
is just any old random number. You could put any hex value here. If the remote signer is working you'll get back a message like:Signature: sigPab0p1MdqojAaNTvASSvLo4ULEujfNFurF71EdoruABoPLLwmSxEDJf4NfQx8nJi3ncjfMEJbiWojTDXDUB8wNF5fgFIbA
-
- 2019-02-24
--dry-run
ステートメントでtransfer
オプションを使用して、ノードがトランザクションをリモート署名者に送信して署名できるようにすると、リモート署名者のログをチェックして、すべてが正常に機能しているかどうかを確認できます.transfer
は、実際にはトランザクションをネットワークに送信しません.I figured out that you can use the
--dry-run
option in thetransfer
statement so that node will send transaction to remote-signer to sign, and you can check the remote-signer logs to see if everything is working fine or not.--dry-run
will not actually send the transaction to the network.-
--dry-run(または-D)オプションは、コマンドの最後に表示する必要があることに注意してください.少し変わっています.Note that the --dry-run (or -D) options have to appear at the very end of the command.. a bit unusual.
- 2
- 2019-02-24
- nurikabe
-
- 2019-02-24
別のオプションは、キルンを使用することです.窯はあなたのパン屋を監視し、あなたがパンを焼くまたは承認の機会を逃した場合にあなたに通知します(これは署名者がダウンしていることを示します).
ここにあります. Another option would be to use Kiln. Kiln monitors your baker and will notify you if you miss any baking or endorsement opportunities (which will indicate that the signer is down).
It can be found here.
-
これは監視には適していますが、ベーキングまたは承認操作がセットアップが機能しているかどうかを確認するのを待ちたくありません.セットアップが機能していない場合は、ベーキング/承認を見逃します.ベーキング/承認操作の前に知りたいです.That is good for monitoring but i don't want to wait for my baking or endorsement operation to know if my setup is working or not, and then miss my baking/endorsement if the setup was not working. I want to know before my baking/endorsement operation.
- 1
- 2019-02-25
- Sachin Tomar
-
これは質問にまったく答えません.OPは、「署名者」が機能していることをテストする方法を尋ねましたが、このソフトウェアは機能しません.This does not answer the question in any way. OP asked how to test that `signer` is working and this software will not do so.
- 2
- 2019-02-25
- utdrmac
-
直接ではなく、間接的に♂️助けようとしているだけです.しかし、-dry-runはまともなアプローチのようですNot directly no, but indirectly ♂️ Just trying to help. But seems like the --dry-run is a decent approach
- 1
- 2019-02-25
- asbjornenge
開始されたリモート署名者ソケットが期待どおりに機能し、実際に転送トランザクションを送信せずにベイカーサーバーからの署名要求を受け入れていることを確認するにはどうすればよいですか.
今は、リモート署名者かどうかをテストするために、
.00005
を<key1>
から<key2>
に転送しています.セットアップは機能しています.署名は必要だが、tzの転送は必要としないトランザクションのような他の方法はありますか.