@aztec/txe 0.0.1-commit.ec5f612 → 0.0.1-commit.ef17749e1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -202,7 +202,7 @@ export class TXESession implements TXESessionStateHandler {
202
202
  chainId,
203
203
  new Map(),
204
204
  );
205
- await topLevelOracleHandler.txeAdvanceBlocksBy(1);
205
+ await topLevelOracleHandler.advanceBlocksBy(1);
206
206
 
207
207
  return new TXESession(
208
208
  createLogger('txe:session'),
@@ -452,8 +452,8 @@ export class TXESession implements TXESessionStateHandler {
452
452
 
453
453
  // Note that while all public and private contexts do is build a single block that we then process when exiting
454
454
  // those, the top level context performs a large number of actions not captured in the following 'close' call. Among
455
- // others, it will create empty blocks (via `txeAdvanceBlocksBy` and `deploy`), create blocks with transactions via
456
- // `txePrivateCallNewFlow` and `txePublicCallNewFlow`, add accounts to PXE via `txeAddAccount`, etc. This is a
455
+ // others, it will create empty blocks (via `advanceBlocksBy` and `deploy`), create blocks with transactions via
456
+ // `privateCallNewFlow` and `publicCallNewFlow`, add accounts to PXE via `addAccount`, etc. This is a
457
457
  // slight inconsistency in the working model of this class, but is not too bad.
458
458
  // TODO: it's quite unfortunate that we need to capture the authwits created to later pass them again when the top
459
459
  // level context is re-created. This is because authwits create a temporary utility context that'd otherwise reset