File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,12 @@ public static function getChainId($chainName)
34
34
35
35
/**
36
36
* @param ConnectorInterface $connector
37
+ * @param string $expirationTime is string in DateInterval format, example 'PT2M'
37
38
*
38
39
* @return CommandQueryData
39
40
* @throws \Exception
40
41
*/
41
- public static function init (ConnectorInterface $ connector )
42
+ public static function init (ConnectorInterface $ connector, $ expirationTime = ' PT2M ' )
42
43
{
43
44
$ tx = null ;
44
45
$ chainName = $ connector ->getPlatform ();
@@ -80,7 +81,7 @@ public static function init(ConnectorInterface $connector)
80
81
[[
81
82
'ref_block_num ' => $ refBlockNum ,
82
83
'ref_block_prefix ' => $ buf ->readInt32lE (4 ),
83
- 'expiration ' => (new \DateTime ($ properties ['time ' ]))->add (new \DateInterval (' PT1M ' ))->format ('Y-m-d\TH:i:s\.000 ' ),
84
+ 'expiration ' => (new \DateTime ($ properties ['time ' ]))->add (new \DateInterval ($ expirationTime ))->format ('Y-m-d\TH:i:s\.000 ' ),
84
85
'operations ' => [],
85
86
'extensions ' => [],
86
87
'signatures ' => []
You can’t perform that action at this time.
0 commit comments