Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Install locally
run: |
pip install -e .
python3 -m pip install .

- name: Run all Examples
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Install locally
run: |
pip install -e .
python3 -m pip install .

- name: Run tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Explore the `examples` folder for more detailed usage scenarios.
For local development, you can install the package in editable mode, which allows you to make changes and test them immediately:

```bash
pip install -e .
python3 -m pip install .
```

After making changes, it's important to ensure all tests pass by running:
Expand Down
4 changes: 2 additions & 2 deletions examples/example_get_blockchain_info.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pactus.rpc.blockchain_pb2_grpc import BlockchainStub
from pactus.rpc.blockchain_pb2 import GetBlockchainInfoRequest
from pactus_grpc.blockchain_pb2_grpc import BlockchainStub
from pactus_grpc.blockchain_pb2 import GetBlockchainInfoRequest
import grpc


Expand Down
4 changes: 2 additions & 2 deletions examples/example_get_consensus_info.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pactus.rpc.blockchain_pb2_grpc import BlockchainStub
from pactus.rpc.blockchain_pb2 import GetConsensusInfoRequest
from pactus_grpc.blockchain_pb2_grpc import BlockchainStub
from pactus_grpc.blockchain_pb2 import GetConsensusInfoRequest
import grpc


Expand Down
4 changes: 2 additions & 2 deletions examples/example_get_node_info.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pactus.rpc.network_pb2_grpc import NetworkStub
from pactus.rpc.network_pb2 import GetNodeInfoRequest
from pactus_grpc.network_pb2_grpc import NetworkStub
from pactus_grpc.network_pb2 import GetNodeInfoRequest
import grpc


Expand Down
Empty file removed pactus/rpc/__init__.py
Empty file.
87 changes: 0 additions & 87 deletions pactus/rpc/blockchain_pb2.py

This file was deleted.

Loading