mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Minor fix to capture arg of display totals
This commit is contained in:
parent
012aa7850a
commit
8316056667
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ class ExtractBitcoinAddresses extends Operation {
|
|||
* @returns {string}
|
||||
*/
|
||||
run(input, args) {
|
||||
const [displayTotal] = args,
|
||||
const displayTotal = args[0],
|
||||
bitcoin = "(?:[13]{1}[a-km-zA-HJ-NP-Z1-9]{26,33}|bc1[a-z0-9]{39,59})";
|
||||
|
||||
const bitcoins = bitcoin;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue