aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/args.go
diff options
context:
space:
mode:
authorDaniel A. Nagy <nagy.da@gmail.com>2015-05-08 22:17:19 +0800
committerDaniel A. Nagy <nagy.da@gmail.com>2015-05-08 22:17:19 +0800
commite94aa421c69b8eee2f2e06654f9a288cdfe4f546 (patch)
treeb40b37ffbee71717205b914faedcd6bf16ef7432 /rpc/args.go
parent15bfae52d253258829c10b14b43b02c73e3f7d04 (diff)
downloadgo-tangerine-e94aa421c69b8eee2f2e06654f9a288cdfe4f546.tar.gz
go-tangerine-e94aa421c69b8eee2f2e06654f9a288cdfe4f546.tar.zst
go-tangerine-e94aa421c69b8eee2f2e06654f9a288cdfe4f546.zip
New API call for signatures.
Diffstat (limited to 'rpc/args.go')
-rw-r--r--rpc/args.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/rpc/args.go b/rpc/args.go
index 58a750415..6c98d1267 100644
--- a/rpc/args.go
+++ b/rpc/args.go
@@ -166,6 +166,11 @@ type NewTxArgs struct {
BlockNumber int64
}
+type NewSigArgs struct {
+ From string
+ Data string
+}
+
func (args *NewTxArgs) UnmarshalJSON(b []byte) (err error) {
var obj []json.RawMessage
var ext struct {