Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
5c7e96d8
Commit
5c7e96d8
authored
Jul 10, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed serpent
parent
04561c4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
script.go
ethutil/script.go
+8
-7
No files found.
ethutil/script.go
View file @
5c7e96d8
...
@@ -4,7 +4,6 @@ import (
...
@@ -4,7 +4,6 @@ import (
"fmt"
"fmt"
"github.com/obscuren/mutan"
"github.com/obscuren/mutan"
"github.com/obscuren/mutan/backends"
"github.com/obscuren/mutan/backends"
"github.com/obscuren/serpent-go"
"strings"
"strings"
)
)
...
@@ -15,13 +14,15 @@ func Compile(script string, silent bool) (ret []byte, err error) {
...
@@ -15,13 +14,15 @@ func Compile(script string, silent bool) (ret []byte, err error) {
if
len
(
line
)
>
1
&&
line
[
0
:
2
]
==
"#!"
{
if
len
(
line
)
>
1
&&
line
[
0
:
2
]
==
"#!"
{
switch
line
{
switch
line
{
case
"#!serpent"
:
/*
byteCode
,
err
:=
serpent
.
Compile
(
script
)
case "#!serpent":
if
err
!=
nil
{
byteCode, err := serpent.Compile(script)
return
nil
,
err
if err != nil {
}
return nil, err
}
return
byteCode
,
nil
return byteCode, nil
*/
}
}
}
else
{
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment