Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
72d7d91
Feat:Add register processor function to pallet
sulijia May 16, 2024
a696a9d
Feat:Add the logic code of the node part of the processor
sulijia May 18, 2024
7725190
Fix:kill docker container then store instance
sulijia May 19, 2024
f979ea1
Feat:add processor to run batch client
sulijia May 23, 2024
f91cf61
Feat:Bind application parameters to hash
sulijia May 25, 2024
0668987
Merge pull request #1 from sulijia/processor
sulijia May 27, 2024
d446904
Merge pull request #23 from sulijia/feature/processor-run
sulijia May 27, 2024
0ca9232
Merge branch 'Main-develop' into feature/processor-run
sulijia May 27, 2024
6677ba8
Feat:merge processor group code
sulijia May 27, 2024
89e5907
Merge pull request #26 from sulijia/feature/processor-run
sulijia May 27, 2024
28a4d85
Feat:1.Verify whether the same hash app exists 2.change final hook to…
sulijia May 28, 2024
baad561
Feat:Shut down processor client that are not in the group
sulijia May 28, 2024
7fcf63e
Feat:Add a function to redirect docker logs to a file
sulijia May 29, 2024
7cb20bf
Fix:redirect docker log to file function
sulijia May 30, 2024
f2b8bd6
Fix:consensus client run as docker container output log success
sulijia May 31, 2024
5d8f707
Fix:processor run as docker container should direct log to file
sulijia Jun 1, 2024
3731364
Feat:check hash when pull docker image
sulijia Jun 1, 2024
5100e95
Fix:The startup application parameters need to be bound to the app id
sulijia Jun 1, 2024
ea26968
Feat:Both the IP and the account ID must be met to run the processor …
sulijia Jun 1, 2024
9dc1f4b
Feat:Add code comments
sulijia Jun 2, 2024
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
213 changes: 209 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ tempfile="3.9.0"
error-chain="0.12.4"
ring="0.17.8"
tokio = { version = "1.22.0", features = ["parking_lot", "rt-multi-thread", "time"] }
public-ip = "0.2"

# Local
primitives-container = { path = "../primitives/container"}
Expand Down
Loading