mirror of
				https://github.com/bumi/lnrpc
				synced 2025-11-04 09:50:22 +00:00 
			
		
		
		
	Update gRPC files for v.14.3
This commit is contained in:
		
							parent
							
								
									a839d09e6e
								
							
						
					
					
						commit
						1fd764f55a
					
				@ -62,6 +62,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
 | 
			
		||||
    end
 | 
			
		||||
    add_message "routerrpc.XImportMissionControlRequest" do
 | 
			
		||||
      repeated :pairs, :message, 1, "routerrpc.PairHistory"
 | 
			
		||||
      optional :force, :bool, 2
 | 
			
		||||
    end
 | 
			
		||||
    add_message "routerrpc.XImportMissionControlResponse" do
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
@ -173,6 +173,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
 | 
			
		||||
      optional :outpoint, :message, 2, "lnrpc.OutPoint"
 | 
			
		||||
      optional :expiration, :uint64, 3
 | 
			
		||||
    end
 | 
			
		||||
    add_message "walletrpc.SignPsbtRequest" do
 | 
			
		||||
      optional :funded_psbt, :bytes, 1
 | 
			
		||||
    end
 | 
			
		||||
    add_message "walletrpc.SignPsbtResponse" do
 | 
			
		||||
      optional :signed_psbt, :bytes, 1
 | 
			
		||||
    end
 | 
			
		||||
    add_message "walletrpc.FinalizePsbtRequest" do
 | 
			
		||||
      optional :funded_psbt, :bytes, 1
 | 
			
		||||
      optional :account, :string, 5
 | 
			
		||||
@ -248,6 +254,8 @@ module Walletrpc
 | 
			
		||||
  FundPsbtResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.FundPsbtResponse").msgclass
 | 
			
		||||
  TxTemplate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.TxTemplate").msgclass
 | 
			
		||||
  UtxoLease = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.UtxoLease").msgclass
 | 
			
		||||
  SignPsbtRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.SignPsbtRequest").msgclass
 | 
			
		||||
  SignPsbtResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.SignPsbtResponse").msgclass
 | 
			
		||||
  FinalizePsbtRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.FinalizePsbtRequest").msgclass
 | 
			
		||||
  FinalizePsbtResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.FinalizePsbtResponse").msgclass
 | 
			
		||||
  ListLeasesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.ListLeasesRequest").msgclass
 | 
			
		||||
 | 
			
		||||
@ -169,6 +169,19 @@ module Walletrpc
 | 
			
		||||
      # an error on the caller's side.
 | 
			
		||||
      rpc :FundPsbt, ::Walletrpc::FundPsbtRequest, ::Walletrpc::FundPsbtResponse
 | 
			
		||||
      #
 | 
			
		||||
      # SignPsbt expects a partial transaction with all inputs and outputs fully
 | 
			
		||||
      # declared and tries to sign all unsigned inputs that have all required fields
 | 
			
		||||
      # (UTXO information, BIP32 derivation information, witness or sig scripts)
 | 
			
		||||
      # set.
 | 
			
		||||
      # If no error is returned, the PSBT is ready to be given to the next signer or
 | 
			
		||||
      # to be finalized if lnd was the last signer.
 | 
			
		||||
      #
 | 
			
		||||
      # NOTE: This RPC only signs inputs (and only those it can sign), it does not
 | 
			
		||||
      # perform any other tasks (such as coin selection, UTXO locking or
 | 
			
		||||
      # input/output/fee value validation, PSBT finalization). Any input that is
 | 
			
		||||
      # incomplete will be skipped.
 | 
			
		||||
      rpc :SignPsbt, ::Walletrpc::SignPsbtRequest, ::Walletrpc::SignPsbtResponse
 | 
			
		||||
      #
 | 
			
		||||
      # FinalizePsbt expects a partial transaction with all inputs and outputs fully
 | 
			
		||||
      # declared and tries to sign all inputs that belong to the wallet. Lnd must be
 | 
			
		||||
      # the last signer of the transaction. That means, if there are any unsigned
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user