File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
The ` signer ` binary contains a ruleset engine, implemented with [ OttoVM] ( https://github.com/robertkrimen/otto )
4
4
5
- It enables usecases like the following:
5
+ It enables use cases like the following:
6
6
7
7
* I want to auto-approve transactions with contract ` CasinoDapp ` , with up to ` 0.05 ether ` in value to maximum ` 1 ether ` per 24h period
8
8
* I want to auto-approve transaction to contract ` EthAlarmClock ` with ` data ` =` 0xdeadbeef ` , if ` value=0 ` , ` gas < 44k ` and ` gasPrice < 40Gwei `
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ which can
16
16
1 . Take a prestate, including
17
17
- Accounts,
18
18
- Block context information,
19
- - Previous blockshashes (* optional)
19
+ - Previous block hashes (* optional)
20
20
2 . Apply a set of transactions,
21
21
3 . Apply a mining-reward (* optional),
22
22
4 . And generate a post-state, including
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import "regexp"
22
22
// within its filename by the execution spec test (EEST).
23
23
type testMetadata struct {
24
24
fork string
25
- module string // which python module gnerated the test, e.g. eip7702
25
+ module string // which python module generated the test, e.g. eip7702
26
26
file string // exact file the test came from, e.g. test_gas.py
27
27
function string // func that created the test, e.g. test_valid_mcopy_operations
28
28
parameters string // the name of the parameters which were used to fill the test, e.g. zero_inputs
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ func (s *skeleton) startup() {
275
275
for {
276
276
// If the sync cycle terminated or was terminated, propagate up when
277
277
// higher layers request termination. There's no fancy explicit error
278
- // signalling as the sync loop should never terminate (TM).
278
+ // signaling as the sync loop should never terminate (TM).
279
279
newhead , err := s .sync (head )
280
280
switch {
281
281
case err == errSyncLinked :
Original file line number Diff line number Diff line change 15
15
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
16
16
17
17
// This file contains the code snippets from the developer's guide embedded into
18
- // Go tests. This ensures that any code published in out guides will not break
18
+ // Go tests. This ensures that any code published in our guides will not break
19
19
// accidentally via some code update. If some API changes nonetheless that needs
20
20
// modifying this file, please port any modification over into the developer's
21
21
// guide wiki pages too!
You can’t perform that action at this time.
0 commit comments