From 23f5472cd37b441cedc0a6780f40aa861fba088a Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Tue, 11 Feb 2020 13:56:47 +0100 Subject: [PATCH] chainrpc: format chainnotifier.proto --- lnrpc/chainrpc/chainnotifier.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lnrpc/chainrpc/chainnotifier.proto b/lnrpc/chainrpc/chainnotifier.proto index 2014c290..a0d07951 100644 --- a/lnrpc/chainrpc/chainnotifier.proto +++ b/lnrpc/chainrpc/chainnotifier.proto @@ -150,7 +150,7 @@ service ChainNotifier { particular transaction by its hash or for an output script by specifying a zero hash. */ - rpc RegisterConfirmationsNtfn(ConfRequest) returns (stream ConfEvent); + rpc RegisterConfirmationsNtfn (ConfRequest) returns (stream ConfEvent); /* RegisterSpendNtfn is a synchronous response-streaming RPC that registers an @@ -160,7 +160,7 @@ service ChainNotifier { A client can specify whether the spend request should be for a particular outpoint or for an output script by specifying a zero outpoint. */ - rpc RegisterSpendNtfn(SpendRequest) returns (stream SpendEvent); + rpc RegisterSpendNtfn (SpendRequest) returns (stream SpendEvent); /* RegisterBlockEpochNtfn is a synchronous response-streaming RPC that @@ -173,5 +173,5 @@ service ChainNotifier { point. This allows clients to be idempotent by ensuring that they do not missing processing a single block within the chain. */ - rpc RegisterBlockEpochNtfn(BlockEpoch) returns (stream BlockEpoch); + rpc RegisterBlockEpochNtfn (BlockEpoch) returns (stream BlockEpoch); }