diff --git a/client/v2/algod/algod.go b/client/v2/algod/algod.go index 48deecf4..3e27a010 100644 --- a/client/v2/algod/algod.go +++ b/client/v2/algod/algod.go @@ -27,7 +27,7 @@ func (c *Client) getMsgpack(ctx context.Context, response interface{}, path stri return (*common.Client)(c).GetRawMsgpack(ctx, response, path, body, headers) } -// getMsgpack performs a GET request to the specific path against the server, assumes msgpack response +// getRaw performs a GET request to the specific path against the server, assumes msgpack response func (c *Client) getRaw(ctx context.Context, path string, body interface{}, headers []*common.Header) ([]byte, error) { return (*common.Client)(c).GetRaw(ctx, path, body, headers) } diff --git a/client/v2/indexer/indexer.go b/client/v2/indexer/indexer.go index e0e5cf2c..d35e503b 100644 --- a/client/v2/indexer/indexer.go +++ b/client/v2/indexer/indexer.go @@ -26,7 +26,7 @@ func (c *Client) getMsgpack(ctx context.Context, response interface{}, path stri return (*common.Client)(c).GetRawMsgpack(ctx, response, path, body, headers) } -// getMsgpack performs a GET request to the specific path against the server, assumes msgpack response +// getRaw performs a GET request to the specific path against the server, assumes msgpack response func (c *Client) getRaw(ctx context.Context, path string, body interface{}, headers []*common.Header) ([]byte, error) { return (*common.Client)(c).GetRaw(ctx, path, body, headers) } diff --git a/transaction/transaction.go b/transaction/transaction.go index b7d40715..46c06c65 100644 --- a/transaction/transaction.go +++ b/transaction/transaction.go @@ -556,7 +556,7 @@ func byte32FromBase64(in string) (out [32]byte, err error) { return } -// byte32FromBase64 decodes the input base64 string and outputs a +// byte64FromBase64 decodes the input base64 string and outputs a // 64 byte array, erroring if the input is the wrong length. func byte64FromBase64(in string) (out [64]byte, err error) { slice, err := base64.StdEncoding.DecodeString(in)