Hello!
I'm using an ERC20Upgradeable is PausableUpgradeable.
I initiate them in the initialise.
__Pausable_init();
__AccessControl_init();
__ERC20_init(_name, _symbol);
When I call the mint function. The call fail and Tenderly point me to the mint call and the next step is
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
{
"[FUNCTION]":
"paused"
"[OPCODE]":
"JUMP"
"[INPUT]":
"0x"
"output":{
"0":
false
}
}
Not sure why this contract would be paused on deployment!?