-
Notifications
You must be signed in to change notification settings - Fork 710
Ability to Create Sub Assets via RPC. Fix large Asset Transactions #196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
src/rpc/assets.cpp
Outdated
|
|
||
| UniValue issuesubasset(const JSONRPCRequest& request) | ||
| { | ||
| if (request.fHelp || !AreAssetsDeployed() || request.params.size() < 2 || request.params.size() > 8) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be <3?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep.
src/rpc/assets.cpp
Outdated
|
|
||
| UniValue issuesubasset(const JSONRPCRequest& request) | ||
| { | ||
| if (request.fHelp || !AreAssetsDeployed() || request.params.size() < 2 || request.params.size() > 9) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be < 3 ?
src/script/standard.cpp
Outdated
| vSolutionsRet.push_back(hashBytes); | ||
| return true; | ||
| } | ||
| // if (scriptPubKey.IsNewAsset()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kill comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
No description provided.