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 22
33The ` signer ` binary contains a ruleset engine, implemented with [ OttoVM] ( https://github.com/robertkrimen/otto )
44
5- It enables usecases like the following:
5+ It enables use cases like the following:
66
77* I want to auto-approve transactions with contract ` CasinoDapp ` , with up to ` 0.05 ether ` in value to maximum ` 1 ether ` per 24h period
88* 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
16161 . Take a prestate, including
1717 - Accounts,
1818 - Block context information,
19- - Previous blockshashes (* optional)
19+ - Previous block hashes (* optional)
20202 . Apply a set of transactions,
21213 . Apply a mining-reward (* optional),
22224 . And generate a post-state, including
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import "regexp"
2222// within its filename by the execution spec test (EEST).
2323type testMetadata struct {
2424 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
2626 file string // exact file the test came from, e.g. test_gas.py
2727 function string // func that created the test, e.g. test_valid_mcopy_operations
2828 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() {
275275 for {
276276 // If the sync cycle terminated or was terminated, propagate up when
277277 // 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).
279279 newhead , err := s .sync (head )
280280 switch {
281281 case err == errSyncLinked :
Original file line number Diff line number Diff line change 1515// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616
1717// 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
1919// accidentally via some code update. If some API changes nonetheless that needs
2020// modifying this file, please port any modification over into the developer's
2121// guide wiki pages too!
You can’t perform that action at this time.
0 commit comments