Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Refactoring (429-syscall-account-cache)
  • Loading branch information
vakond committed Dec 23, 2021
commit 3a16ef6ea0474e737e4bd3e95a05476015eebfae
6 changes: 3 additions & 3 deletions proxy/testing/test_query_account_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,11 +263,11 @@
uint64 offset;
bytes memory _m;

// Query empty chunk (meaningless, but acceptable)
// Query empty chunk
len = 0;
offset = 30;
offset = 35;
(ok, _m) = super.data(solana_account, offset, len);
if (ok && _m.length == 0) { return true; }
if (ok) { return false; }

// Query chunk wholly before the cached region
len = 10;
Expand Down