-
Notifications
You must be signed in to change notification settings - Fork 9
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
Sc calls executor #305
Sc calls executor #305
Conversation
const ( | ||
getPendingTransactionsFunction = "getPendingTransactions" | ||
okCodeAfterExecution = "ok" | ||
scProxyCallFunction = "executeWithAsnyc" |
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.
scProxyCallFunction = "executeWithAsnyc" | |
scProxyCallFunction = "executeWithAsync" |
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.
it is a typo also on the SCs. I will fix it
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.
changed to execute
to match the contract's endpoint name
return nil, fmt.Errorf("%w: expected an even number, got %d", errInvalidNumberOfResponseLines, numResponseLines) | ||
} | ||
|
||
result := make(map[uint64]parsers.ProxySCCompleteCallData) |
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.
result := make(map[uint64]parsers.ProxySCCompleteCallData) | |
result := make(map[uint64]parsers.ProxySCCompleteCallData, numResponseLines/2) |
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
- added the new contract versions
No description provided.