(mostly) proper ticket generation

This commit is contained in:
whyrusleeping
2019-08-16 12:39:13 -07:00
parent 5a7f59498e
commit f7dc253669
7 changed files with 39 additions and 22 deletions
+1 -1
View File
@@ -326,7 +326,7 @@ func (a *FullNodeAPI) WalletBalance(ctx context.Context, addr address.Address) (
}
func (a *FullNodeAPI) WalletSign(ctx context.Context, k address.Address, msg []byte) (*types.Signature, error) {
return a.Wallet.Sign(k, msg)
return a.Wallet.Sign(ctx, k, msg)
}
func (a *FullNodeAPI) WalletSignMessage(ctx context.Context, k address.Address, msg *types.Message) (*types.SignedMessage, error) {