-
Notifications
You must be signed in to change notification settings - Fork 15
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
Documentation and some fixes along the way #70
Conversation
…ed and non-committed transactions
assert.Empty(t, data.Transactions) | ||
} | ||
|
||
func TestBlockWithTransactions(t *testing.T) { |
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.
copy-paste-o? looks the same as 'with NO transactions'
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.
Yeah I think my PR got too big, and I just cut it off. Just have missed this
@@ -1,3 +1,6 @@ | |||
// Package types is an internal package that contains the types used in the Aptos Go SDK. |
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.
I think the convention is for this kind of note to go in doc.go
(with no other code content)
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.
All the doc guides, don't give enough conventions, just worry about syntax. Will look into this
Description
These are some updates for a 0.6.0 release. Planning on finishing up documentation in another PR.
Breaking
] Change type from Transaction to CommittedTransaction for cases that it's known they're committedFix
] Fix some of the API types that didn't match on-chain representationsBreaking
] Change ToAnyPublicKey to have an error in the outputTest Plan
See unit tests
Related Links