mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-12 20:42:06 +08:00
This commit is contained in:
@@ -3377,8 +3377,8 @@ class BlockstackAPIEndpointHandler(SimpleHTTPRequestHandler):
|
||||
'GET': {
|
||||
'name': 'wallet_read',
|
||||
'desc': 'get the node wallet\'s balance',
|
||||
'auth_session': True,
|
||||
'auth_pass': True,
|
||||
'auth_session': False,
|
||||
'auth_pass': False,
|
||||
'need_data_key': False,
|
||||
},
|
||||
}
|
||||
@@ -3391,8 +3391,8 @@ class BlockstackAPIEndpointHandler(SimpleHTTPRequestHandler):
|
||||
'GET': {
|
||||
'name': 'wallet_read',
|
||||
'desc': 'get the node wallet\'s balance',
|
||||
'auth_session': True,
|
||||
'auth_pass': True,
|
||||
'auth_session': False,
|
||||
'auth_pass': False,
|
||||
'need_data_key': False,
|
||||
},
|
||||
}
|
||||
@@ -3852,6 +3852,20 @@ class BlockstackAPIEndpointHandler(SimpleHTTPRequestHandler):
|
||||
},
|
||||
},
|
||||
},
|
||||
r'^/insight-api/.*$': {
|
||||
'routes': {
|
||||
'OPTIONS': self.OPTIONS_preflight,
|
||||
},
|
||||
'whitelist': {
|
||||
'OPTIONS': {
|
||||
'name': '',
|
||||
'desc': 'preflight check',
|
||||
'auth_session': False,
|
||||
'auth_pass': False,
|
||||
'need_data_key': False,
|
||||
},
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
LOCALHOST = []
|
||||
|
||||
Reference in New Issue
Block a user