Skip to content

Commit

Permalink
bump sava
Browse files Browse the repository at this point in the history
  • Loading branch information
jpe7s committed Sep 30, 2024
1 parent 97bcd5a commit 4317790
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion solana/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Address Lookup Table Service

## Call
## REST API

### Discover Tables

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ public int write(final byte[] out, final int offset) {
o += Integer.BYTES;
System.arraycopy(base64Bytes, 0, out, o, base64Bytes.length);
o += base64Bytes.length;
if (o - offset != length()) {
throw new IllegalStateException(String.format("%d <> %d", o - offset, lastExtendedSlot()));
}
return o - offset;
}

Expand Down Expand Up @@ -112,9 +109,4 @@ public PublicKey account(final int i) {
public byte[] data() {
throw throwUnsupported();
}

@Override
public int offset() {
throw throwUnsupported();
}
}

0 comments on commit 4317790

Please sign in to comment.