Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/lib/RLPReader.sol
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ library RLPReader {
assembly {
result := mload(memPtr)

// shift to the correct location if neccesary
// shift to the correct location if necessary
if lt(len, 32) {
result := div(result, exp(256, sub(32, len)))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1785,7 +1785,7 @@ library ProtoBufRuntime {

/**
* @dev Encode Solidity type
* @param x The unsinged integer to be encoded
* @param x The unsigned integer to be encoded
* @param sz The number of bytes used to encode Solidity types
* @param p The offset of bytes array `bs`
* @param bs The bytes array to encode
Expand Down