Skip to content

Commit

Permalink
Remove sweep - Add rescan transparent addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
hhanh00 committed Sep 27, 2024
1 parent aefc1b9 commit 19cca3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dart-warp
2 changes: 1 addition & 1 deletion warp-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pub fn c_export(_attr: TokenStream, item: TokenStream) -> TokenStream {
let data = res.map(|res| {
let mut builder = FlatBufferBuilder::new();
let mut os = Vec::new();
for v in res.iter() {
for v in res.iter().rev() {
let o = v.pack(&mut builder);
builder.push(o);
os.push(o);
Expand Down

0 comments on commit 19cca3d

Please sign in to comment.