mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
349103de1a
- node: signals and node reset, fixes #152 - tests update (testify is used) - node manager refactored, race conditions fixed - node wrapper has been removed, we rely on go-ethereum node now - tx queue refactored - jail refactored - backend and API introduced
13 lines
221 B
Go
13 lines
221 B
Go
// +build darwin,cgo
|
|
|
|
package node
|
|
|
|
/*
|
|
#cgo CFLAGS: -x objective-c
|
|
#cgo LDFLAGS: -framework Foundation
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
extern bool StatusServiceSignalEvent( const char *jsonEvent );
|
|
*/
|
|
import "C"
|