Merge pull request #74 from filecoin-project/feat/payment-channels

implement initial payment channel actor
This commit is contained in:
Whyrusleeping
2019-07-25 13:49:52 -07:00
committed by GitHub
12 changed files with 402 additions and 101 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ func (a *FullNodeAPI) WalletBalance(ctx context.Context, addr address.Address) (
return a.Chain.GetBalance(addr)
}
func (a *FullNodeAPI) WalletSign(ctx context.Context, k address.Address, msg []byte) (*chain.Signature, error) {
func (a *FullNodeAPI) WalletSign(ctx context.Context, k address.Address, msg []byte) (*types.Signature, error) {
return a.Wallet.Sign(k, msg)
}