Skip to content

Commit

Permalink
fix(docs): Fix imports in token contract tutorial (#2432)
Browse files Browse the repository at this point in the history
Quick fix. We should use `include_code` everywhere instead.
  • Loading branch information
spalladino authored Sep 20, 2023
1 parent 18fe88a commit 34ed663
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/dev_docs/getting_started/token_contract_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,10 +257,10 @@ contract Token {
},
oracle::compute_selector::compute_selector,
auth::{assert_valid_message_for, assert_valid_public_message_for}
types::address::AztecAddress,
};

use crate::types::{AztecAddress, TransparentNote, TransparentNoteMethods, TRANSPARENT_NOTE_LEN};
use crate::account_interface::AccountContract;
use crate::types::{TransparentNote, TransparentNoteMethods, TRANSPARENT_NOTE_LEN};
use crate::util::{compute_message_hash};
```

Expand Down

0 comments on commit 34ed663

Please sign in to comment.