forked from ABCDELabs/Understanding-Ethereum-Go-version
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d77d05f
commit 1366a9d
Showing
9 changed files
with
59 additions
and
36 deletions.
There are no files selected for viewing
This file contains 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 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,6 +1,5 @@ | ||
# 一个Transaction的生老病死/Transaction CRUD | ||
|
||
|
||
## General | ||
|
||
Transaction是Ethereum | ||
|
This file contains 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 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,9 +1,17 @@ | ||
# RPC (远程过程调用) | ||
# Ethereum中的API 调用: RPC and IPC | ||
|
||
## Background | ||
## RPC (远程过程调用) | ||
|
||
### Background | ||
|
||
一个应用可以通过RPC(Remote Procedure Call)的方式来调用某一个go-ethereum的实例(instance)。 通常,go-ethereum默认的对外暴露的RPC端口地址为8545。 | ||
|
||
## Appendix | ||
在example/deploy/SendTransaction.go中,我们展示了一个通过RPC调用go-ethereum实例来发送Transaction的例子。 | ||
|
||
## IPC (进程间通信) | ||
|
||
在example/deploy/SendTransaction.go中,我们展示了一个通过RPC调用go-ethereum实例来发送Transaction的例子。 | ||
### Background | ||
|
||
IPC(Inter-Process Communication) 用于两个进程间进行通信,和共享数据。与RPC不同的是,IPC主要用在同一台宿主机上的不同的进程间的通信。 | ||
|
||
## Appendix |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains 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 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