diff options
author | obscuren <geffobscura@gmail.com> | 2014-09-14 19:27:20 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-09-14 19:27:20 +0800 |
commit | 3dfda15ef39c4d08ba27ffd9f4a8350aa817e6e0 (patch) | |
tree | 04f333780149d25a9550b260d2940718b3d267cc /ethereal/gui.go | |
parent | ddefa11695f9fabaaa0a5f76fe754571829df6ec (diff) | |
download | dexon-3dfda15ef39c4d08ba27ffd9f4a8350aa817e6e0.tar.gz dexon-3dfda15ef39c4d08ba27ffd9f4a8350aa817e6e0.tar.zst dexon-3dfda15ef39c4d08ba27ffd9f4a8350aa817e6e0.zip |
removed ffi
Diffstat (limited to 'ethereal/gui.go')
-rw-r--r-- | ethereal/gui.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ethereal/gui.go b/ethereal/gui.go index 173974c4b..0b1b322ad 100644 --- a/ethereal/gui.go +++ b/ethereal/gui.go @@ -13,8 +13,6 @@ import ( "strconv" "strings" "time" - - "bitbucket.org/binet/go-ffi/pkg/ffi" "github.com/ethereum/eth-go" "github.com/ethereum/eth-go/ethchain" "github.com/ethereum/eth-go/ethdb" @@ -27,6 +25,7 @@ import ( "gopkg.in/qml.v1" ) +/* func LoadExtension(path string) (uintptr, error) { lib, err := ffi.NewLibrary(path) if err != nil { @@ -40,15 +39,14 @@ func LoadExtension(path string) (uintptr, error) { ptr := so() - /* err = lib.Close() if err != nil { return 0, err } - */ return ptr.Interface().(uintptr), nil } +*/ var logger = ethlog.NewLogger("GUI") |