chore: sync submodule state (parent ref update)
Made-with: Cursor
This commit is contained in:
@@ -11,6 +11,12 @@ contract DeployTransactionMirror is Script {
|
||||
// Use MIRROR_ADMIN from .env, or fall back to deployer address
|
||||
address admin = vm.envOr("MIRROR_ADMIN", deployer);
|
||||
|
||||
// Optional: skip stuck nonce (e.g. NEXT_NONCE=13370 when 13369 is stuck)
|
||||
uint64 nextNonce = uint64(vm.envOr("NEXT_NONCE", uint256(0)));
|
||||
if (nextNonce > 0) {
|
||||
vm.setNonce(deployer, nextNonce);
|
||||
}
|
||||
|
||||
vm.startBroadcast(pk);
|
||||
TransactionMirror mirror = new TransactionMirror(admin);
|
||||
console.log("TransactionMirror deployed at:", address(mirror));
|
||||
|
||||
Reference in New Issue
Block a user