aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/args.go
diff options
context:
space:
mode:
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 {