implement initial payment channel actor

This commit is contained in:
whyrusleeping
2019-07-24 15:45:12 -07:00
parent 0569075442
commit 859471aeaf
12 changed files with 318 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)
}