From 6e14d3b3d9c94189770307228c062d5c75ca4cdd Mon Sep 17 00:00:00 2001 From: "J. Ayo Akinyele" Date: Thu, 17 Oct 2019 19:15:47 -0400 Subject: [PATCH] fix zkChannelParams in Go struct --- go/libbolt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/libbolt.go b/go/libbolt.go index 8912d2e..f7d2125 100644 --- a/go/libbolt.go +++ b/go/libbolt.go @@ -226,9 +226,9 @@ type CustClose struct { } type ZkChannelParams struct { - ChannelToken ChannelToken `json:"chantoken"` Commitment Commitment `json:"commitment"` CommitmentProof CommitmentProof `json:"commproof"` + CustPkC string `json:"custstatepkc"` } func BidirectionalChannelSetup(name string, channelSupport bool) (ChannelState, error) {