diff options
author | Tom Harding <tomh@thinlink.com> | 2015-03-22 10:51:43 -0700 |
---|---|---|
committer | Tom Harding <tomh@thinlink.com> | 2015-08-10 10:23:59 -0700 |
commit | 212bcca92089f406d9313dbe6d0e1d25143d61ff (patch) | |
tree | 1cb7ce50735a3db840649e9ebbb6c482c124aac0 /src/rpcclient.cpp | |
parent | 3eaaf71fe76b659d8ed40fdf88ce1ba18b62cc36 (diff) |
Add optional locktime to createrawtransaction
A non-zero locktime also causes input sequences to be set to
non-max, activating the locktime.
Diffstat (limited to 'src/rpcclient.cpp')
-rw-r--r-- | src/rpcclient.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpcclient.cpp b/src/rpcclient.cpp index b41e960e8a..85c05354a2 100644 --- a/src/rpcclient.cpp +++ b/src/rpcclient.cpp @@ -76,6 +76,7 @@ static const CRPCConvertParam vRPCConvertParams[] = { "getrawtransaction", 1 }, { "createrawtransaction", 0 }, { "createrawtransaction", 1 }, + { "createrawtransaction", 2 }, { "signrawtransaction", 1 }, { "signrawtransaction", 2 }, { "sendrawtransaction", 1 }, |