This repository was archived by the owner on Jun 19, 2025. It is now read-only.
forked from priiduneemre/btcd-cli4j
-
Notifications
You must be signed in to change notification settings - Fork 2
implement grpc client for nodes #8
Draft
vinicius-almeida-bitso
wants to merge
27
commits into
master
Choose a base branch
from
impl_grcp_client_node
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
93f9c57
added .idea to gitignore
vinicius-almeida-bitso 68cc9fb
added WIP grpc impl
vinicius-almeida-bitso b7b1de2
identation
vinicius-almeida-bitso b1321fd
identation
vinicius-almeida-bitso 4370311
identation
vinicius-almeida-bitso 98b727e
remove no args constructor
vinicius-almeida-bitso 19fa03e
added new grpc client
vinicius-almeida-bitso c53e352
test indentation gh
vinicius-almeida-bitso d70b1a4
test indentation gh
vinicius-almeida-bitso b4f807d
test indentation gh
vinicius-almeida-bitso 61fce4b
test indentation gh
vinicius-almeida-bitso 1bb3f26
test indentation gh
vinicius-almeida-bitso 0309275
test indentation gh
vinicius-almeida-bitso e58081d
test indentation gh
vinicius-almeida-bitso 02b885f
test indentation gh
vinicius-almeida-bitso e45e2ea
test indentation gh
vinicius-almeida-bitso 1d43afc
test indentation gh
vinicius-almeida-bitso ddedb58
test indentation gh
vinicius-almeida-bitso 5a20c8f
test indentation gh
vinicius-almeida-bitso 4c1dfb3
test indentation gh
vinicius-almeida-bitso 6a6345b
test indentation gh
vinicius-almeida-bitso 4ada8f6
test indentation gh
vinicius-almeida-bitso 33ac999
test indentation gh
vinicius-almeida-bitso 54cdb0d
test indentation gh
vinicius-almeida-bitso e2c03da
test indentation gh
vinicius-almeida-bitso 2d815f9
test indentation gh
vinicius-almeida-bitso 8b21cbb
test indentation gh
vinicius-almeida-bitso File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,4 +7,6 @@ target/ | |
|
|
||
| # Project-specific patterns | ||
| logs/ | ||
| cloc_analysis_14122015.txt | ||
| cloc_analysis_14122015.txt | ||
|
|
||
| .idea/ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,48 +1,53 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
| <parent> | ||
| <groupId>com.github.bitsoex.btcd-cli4j</groupId> | ||
| <artifactId>btcd-cli4j-parent</artifactId> | ||
| <version>1.0-SNAPSHOT</version> | ||
| </parent> | ||
| <artifactId>btcd-cli4j-core</artifactId> | ||
| <packaging>jar</packaging> | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
| <parent> | ||
| <groupId>com.github.bitsoex.btcd-cli4j</groupId> | ||
| <artifactId>btcd-cli4j-parent</artifactId> | ||
| <version>1.0-SNAPSHOT</version> | ||
| </parent> | ||
| <artifactId>btcd-cli4j-core</artifactId> | ||
| <packaging>jar</packaging> | ||
|
|
||
| <name>btcd-cli4j Core</name> | ||
| <description>A set of tools for working with the JSON-RPC API provided by Bitcoin Core</description> | ||
| <name>btcd-cli4j Core</name> | ||
| <description>A set of tools for working with the JSON-RPC API provided by Bitcoin Core</description> | ||
|
|
||
| <dependencies> | ||
| <dependency> | ||
| <groupId>org.apache.httpcomponents</groupId> | ||
| <artifactId>httpclient</artifactId> | ||
| <version>4.3.6</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-core</artifactId> | ||
| <version>${jackson.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-annotations</artifactId> | ||
| <version>${jackson.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-databind</artifactId> | ||
| <version>${jackson.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.slf4j</groupId> | ||
| <artifactId>slf4j-api</artifactId> | ||
| <version>${slf4j.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.commons</groupId> | ||
| <artifactId>commons-lang3</artifactId> | ||
| <version>${commons-lang.version}</version> | ||
| </dependency> | ||
| </dependencies> | ||
| </project> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>com.github.bitsoex.btcd-cli4j</groupId> | ||
| <artifactId>btcd-cli4j-proto</artifactId> | ||
| <version>${project.parent.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.httpcomponents</groupId> | ||
| <artifactId>httpclient</artifactId> | ||
| <version>4.3.6</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-core</artifactId> | ||
| <version>${jackson.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-annotations</artifactId> | ||
| <version>${jackson.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
| <artifactId>jackson-databind</artifactId> | ||
| <version>${jackson.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.slf4j</groupId> | ||
| <artifactId>slf4j-api</artifactId> | ||
| <version>${slf4j.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.commons</groupId> | ||
| <artifactId>commons-lang3</artifactId> | ||
| <version>${commons-lang.version}</version> | ||
| </dependency> | ||
| </dependencies> | ||
| </project> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a weird not visible indentation here, so I applied a reformat here.